Home
last modified time | relevance | path

Searched refs:mBluetoothPan (Results 1 – 5 of 5) sorted by relevance

/packages/apps/Settings/src/com/android/settings/network/tether/
DTetherSettings.java108 private AtomicReference<BluetoothPan> mBluetoothPan = new AtomicReference<>(); field in TetherSettings
202 BluetoothPan pan = mBluetoothPan.get(); in onCreate()
233 BluetoothProfile profile = mBluetoothPan.getAndSet(null); in onDestroy()
291 final BluetoothProfile profile = mBluetoothPan.get(); in onReceive()
502 final BluetoothPan bluetoothPan = mBluetoothPan.get(); in isBluetoothTetheringOn()
610 if (mBluetoothPan.get() == null) {
611 mBluetoothPan.set((BluetoothPan) proxy);
/packages/apps/Settings/src/com/android/settings/network/
DTetherEnabler.java134 private final AtomicReference<BluetoothPan> mBluetoothPan; field in TetherEnabler
153 mBluetoothPan = bluetoothPan; in TetherEnabler()
258 final BluetoothPan pan = mBluetoothPan.get(); in getTetheringState()
/packages/apps/Settings/tests/robotests/src/com/android/settings/network/
DTetherEnablerTest.java80 private BluetoothPan mBluetoothPan; field in TetherEnablerTest
104 panReference.set(mBluetoothPan); in setUp()
/packages/modules/Connectivity/Tethering/tests/unit/src/com/android/networkstack/tethering/
DTetheringTest.java291 @Mock private BluetoothPan mBluetoothPan; field in TetheringTest
3353 when(mBluetoothPan.isTetheringOn()).thenReturn(tetheringOn); in mockBluetoothSettings()
3405 listener.onServiceConnected(BluetoothProfile.PAN, mBluetoothPan); in verifySetBluetoothTethering()
3422 verify(mBluetoothPan).setBluetoothTethering(enable); in verifySetBluetoothTethering()
3424 verify(mBluetoothPan).isTetheringOn(); in verifySetBluetoothTethering()
3425 verifyNoMoreInteractions(mBluetoothAdapter, mBluetoothPan); in verifySetBluetoothTethering()
3426 reset(mBluetoothAdapter, mBluetoothPan); in verifySetBluetoothTethering()
/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/
DTethering.java284 private BluetoothPan mBluetoothPan; field in Tethering
783 setBluetoothTetheringSettings(mBluetoothPan, enable, listener); in setBluetoothTethering()
815 mBluetoothPan = (BluetoothPan) proxy; in onServiceConnected()
819 setBluetoothTetheringSettings(mBluetoothPan, request.first, request.second); in onServiceConnected()