Home
last modified time | relevance | path

Searched refs:isBluetoothConnecting (Results 1 – 6 of 6) sorted by relevance

/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tiles/
H A DBluetoothTileTest.kt255 whenever(bluetoothController.isBluetoothConnecting).thenReturn(false)
260 whenever(bluetoothController.isBluetoothConnecting).thenReturn(false)
266 whenever(bluetoothController.isBluetoothConnecting).thenReturn(true)
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DBluetoothController.java35 boolean isBluetoothConnecting(); in isBluetoothConnecting() method
H A DBluetoothControllerImpl.java212 public boolean isBluetoothConnecting() { in isBluetoothConnecting() method in BluetoothControllerImpl
/aosp14/frameworks/base/packages/SystemUI/tests/utils/src/com/android/systemui/utils/leaks/
H A DFakeBluetoothController.java56 public boolean isBluetoothConnecting() { in isBluetoothConnecting() method in FakeBluetoothController
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/statusbar/policy/
H A DBluetoothControllerImplTest.java157 assertTrue(mBluetoothControllerImpl.isBluetoothConnecting()); in testOnServiceConnected_updatesConnectionState_repoFlagOff()
169 assertTrue(mBluetoothControllerImpl.isBluetoothConnecting()); in testOnServiceConnected_updatesConnectionState_repoFlagOn()
233 assertFalse(mBluetoothControllerImpl.isBluetoothConnecting()); in testOnBluetoothStateChange_updatesConnectionState()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DBluetoothTile.java146 final boolean connecting = mController.isBluetoothConnecting(); in handleUpdateState()