Home
last modified time | relevance | path

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

/frameworks/base/packages/SystemUI/src/com/android/systemui/bluetooth/qsdialog/
DBluetoothAutoOnInteractor.kt34 suspend fun isAutoOnSupported(): Boolean = bluetoothAutoOnRepository.isAutoOnSupported() in isAutoOnSupported() method in com.android.systemui.bluetooth.qsdialog.BluetoothAutoOnInteractor
42 if (!isAutoOnSupported()) { in isAutoOnSupported()
DBluetoothAutoOnRepository.kt92 suspend fun isAutoOnSupported(): Boolean = in <lambda>() method
95 bluetoothAdapter?.isAutoOnSupported ?: false in <lambda>()
DBluetoothTileDialogViewModel.kt301 bluetoothAutoOnInteractor.isAutoOnSupported() in isAutoOnToggleFeatureAvailable()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/bluetooth/qsdialog/
DBluetoothAutoOnInteractorTest.kt76 whenever(bluetoothAdapter.isAutoOnSupported).thenReturn(false) in <lambda>()
88 whenever(bluetoothAdapter.isAutoOnSupported).thenReturn(true) in <lambda>()
DBluetoothAutoOnRepositoryTest.kt91 whenever(bluetoothAdapter.isAutoOnSupported).thenReturn(true) in testIsAutoOnSupported_returnTrue()
92 val actualValue = bluetoothAutoOnRepository.isAutoOnSupported() in testIsAutoOnSupported_returnTrue()
DBluetoothTileDialogViewModelTest.kt260 whenever(bluetoothAdapter.isAutoOnSupported).thenReturn(true) in testIsAutoOnToggleFeatureAvailable_returnTrue()
270 whenever(bluetoothAdapter.isAutoOnSupported).thenReturn(false) in testIsAutoOnToggleFeatureAvailable_returnFalse()