Home
last modified time | relevance | path

Searched refs:mProfilesConnecting (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/btservice/
DAdapterProperties.java106 private int mProfilesConnecting, mProfilesConnected, mProfilesDisconnecting; field in AdapterProperties
871 if (mProfilesConnecting > 0) { in updateCountersAndCheckForConnectionStateChange()
872 mProfilesConnecting--; in updateCountersAndCheckForConnectionStateChange()
874 Log.e(TAG, "mProfilesConnecting " + mProfilesConnecting); in updateCountersAndCheckForConnectionStateChange()
903 mProfilesConnecting++; in updateCountersAndCheckForConnectionStateChange()
904 return (mProfilesConnected == 0 && mProfilesConnecting == 1); in updateCountersAndCheckForConnectionStateChange()
915 return (mProfilesConnected == 0 && mProfilesConnecting == 0); in updateCountersAndCheckForConnectionStateChange()
1185 mProfilesConnecting = 0; in onBluetoothReady()
/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/le_scan/
DScanManager.java146 @VisibleForTesting int mProfilesConnecting; field in ScanManager
1975 if (mProfilesConnecting > 0) { in updateCountersAndCheckForConnectingState()
1976 mProfilesConnecting--; in updateCountersAndCheckForConnectingState()
1978 Log.e(TAG, "mProfilesConnecting " + mProfilesConnecting); in updateCountersAndCheckForConnectingState()
2004 mProfilesConnecting++; in updateCountersAndCheckForConnectingState()
2019 + mProfilesConnecting in updateCountersAndCheckForConnectingState()
2024 return (mProfilesConnecting > 0); in updateCountersAndCheckForConnectingState()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/le_scan/
DScanManagerTest.java1646 assertThat(mScanManager.mProfilesConnecting).isEqualTo(3); in multipleProfileConnectionStateChanged_updateCountersCorrectly()