Home
last modified time | relevance | path

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

/packages/apps/Settings/src/com/android/settings/network/
DTetheredRepository.kt51 ) { tetheringInterfaces, isBluetoothTetheringOn -> in <lambda>() method
53 if (isBluetoothTetheringOn) mutableSet += TetheringManager.TETHERING_BLUETOOTH in <lambda>()
/packages/apps/Settings/tests/robotests/src/com/android/settings/network/tether/
DTetherSettingsTest.java250 when(mTetherSettings.isBluetoothTetheringOn()).thenReturn(true); in testBluetoothState_updateBluetoothState_bluetoothTetheringStateOn()
281 when(mTetherSettings.isBluetoothTetheringOn()).thenReturn(false); in testBluetoothState_updateBluetoothState_bluetoothTetheringStateOff()
/packages/apps/Settings/src/com/android/settings/network/tether/
DTetherSettings.java501 boolean isBluetoothTetheringOn() { in isBluetoothTetheringOn() method in TetherSettings
521 if (btState == BluetoothAdapter.STATE_ON && isBluetoothTetheringOn()) { in updateBluetoothState()