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

Commit 733f0bc0 authored by Marie Janssen's avatar Marie Janssen Committed by android-build-merger
Browse files

Bluetooth: More logging of bluetooth service state am: 9fa24918 am: d8e027b5

am: 849174f2

Change-Id: I3049a597bf3182b68167973ab897749833a0dc9d
parents 4b6e0d7b 849174f2
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -2060,7 +2060,7 @@ public final class BluetoothAdapter {
    final private IBluetoothManagerCallback mManagerCallback =
        new IBluetoothManagerCallback.Stub() {
            public void onBluetoothServiceUp(IBluetooth bluetoothService) {
                if (VDBG) Log.d(TAG, "onBluetoothServiceUp: " + bluetoothService);
                if (DBG) Log.d(TAG, "onBluetoothServiceUp: " + bluetoothService);

                mServiceLock.writeLock().lock();
                mService = bluetoothService;
@@ -2082,7 +2082,7 @@ public final class BluetoothAdapter {
            }

            public void onBluetoothServiceDown() {
                if (VDBG) Log.d(TAG, "onBluetoothServiceDown: " + mService);
                if (DBG) Log.d(TAG, "onBluetoothServiceDown: " + mService);

                try {
                    mServiceLock.writeLock().lock();
@@ -2110,7 +2110,7 @@ public final class BluetoothAdapter {
            }

            public void onBrEdrDown() {
                if (VDBG) Log.i(TAG, "on QBrEdrDown: ");
                if (DBG) Log.i(TAG, "onBrEdrDown:");
            }
    };

+9 −4
Original line number Diff line number Diff line
@@ -208,7 +208,7 @@ class BluetoothManagerService extends IBluetoothManager.Stub {
                    } finally {
                        mBluetoothLock.readLock().unlock();
                    }
                    Slog.d(TAG, "state" + st);
                    Slog.d(TAG, "Airplane Mode change - current state: " + st);

                    if (isAirplaneModeOn()) {
                        // Clear registered LE apps to force shut-off
@@ -275,6 +275,7 @@ class BluetoothManagerService extends IBluetoothManager.Stub {
        mContext.registerReceiver(mReceiver, filter);
        loadStoredNameAndAddress();
        if (isBluetoothPersistedStateOn()) {
            if (DBG) Slog.d(TAG, "Startup: Bluetooth persisted state is ON.");
            mEnableExternal = true;
        }

@@ -301,8 +302,10 @@ class BluetoothManagerService extends IBluetoothManager.Stub {
     *  Returns true if the Bluetooth saved state is "on"
     */
    private final boolean isBluetoothPersistedStateOn() {
        return Settings.Global.getInt(mContentResolver,
                Settings.Global.BLUETOOTH_ON, BLUETOOTH_ON_BLUETOOTH) != BLUETOOTH_OFF;
        int state = Settings.Global.getInt(mContentResolver,
                                           Settings.Global.BLUETOOTH_ON, -1);
        if (DBG) Slog.d(TAG, "Bluetooth persisted state: " + state);
        return state != BLUETOOTH_OFF;
    }

    /**
@@ -318,6 +321,7 @@ class BluetoothManagerService extends IBluetoothManager.Stub {
     *
     */
    private void persistBluetoothSetting(int value) {
        if (DBG) Slog.d(TAG, "Persisting Bluetooth Setting: " + value);
        Settings.Global.putInt(mContext.getContentResolver(),
                               Settings.Global.BLUETOOTH_ON,
                               value);
@@ -1742,6 +1746,7 @@ class BluetoothManagerService extends IBluetoothManager.Stub {

    private void bluetoothStateChangeHandler(int prevState, int newState) {
        boolean isStandardBroadcast = true;
        if (DBG) Slog.d(TAG, "bluetoothStateChangeHandler: " + prevState + " ->  " + newState);
        if (prevState != newState) {
            //Notify all proxy objects first of adapter state change
            if (newState == BluetoothAdapter.STATE_BLE_ON ||