Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e834ca55 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 4455093 from 42753a512e2719ca078851a62760a19890641e6f to pi-release

Change-Id: Idcc6be27c5e086d9b256f9b09f61590f5a9c1327
parents d5bedaff 37573341
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -195,6 +195,7 @@ class BluetoothManagerService extends IBluetoothManager.Stub {
    private LinkedList<ActiveLog> mActiveLogs;
    private LinkedList<Long> mCrashTimestamps;
    private int mCrashes;
    private long mLastEnabledTime;

    // configuration from external IBinder call which is used to
    // synchronize with broadcast receiver.
@@ -2021,6 +2022,7 @@ class BluetoothManagerService extends IBluetoothManager.Stub {
        mHandler.sendMessage(mHandler.obtainMessage(MESSAGE_ENABLE,
                             quietMode ? 1 : 0, 0));
        addActiveLog(packageName, true);
        mLastEnabledTime = SystemClock.elapsedRealtime();
    }

    private void addActiveLog(String packageName, boolean enable) {
@@ -2142,7 +2144,7 @@ class BluetoothManagerService extends IBluetoothManager.Stub {
            writer.println("  address: " + mAddress);
            writer.println("  name: " + mName);
            if (mEnable) {
                long onDuration = System.currentTimeMillis() - mActiveLogs.getLast().getTime();
                long onDuration = SystemClock.elapsedRealtime() - mLastEnabledTime;
                String onDurationString = String.format("%02d:%02d:%02d.%03d",
                                          (int)(onDuration / (1000 * 60 * 60)),
                                          (int)((onDuration / (1000 * 60)) % 60),