Home
last modified time | relevance | path

Searched refs:bluetoothPan (Results 1 – 4 of 4) sorted by relevance

/packages/modules/Bluetooth/android/pandora/server/src/
DPan.kt46 private val bluetoothPan = getProfileProxy<BluetoothPan>(context, BluetoothProfile.PAN) constant in com.android.pandora.Pan
69 bluetoothAdapter.closeProfileProxy(BluetoothProfile.PAN, bluetoothPan) in close()
98 bluetoothPan.setConnectionPolicy(device, BluetoothProfile.CONNECTION_POLICY_ALLOWED) in connectPan()
99 bluetoothPan.connect(device) in connectPan()
/packages/apps/Settings/src/com/android/settings/network/
DTetherEnabler.java143 AtomicReference<BluetoothPan> bluetoothPan) { in TetherEnabler() argument
153 mBluetoothPan = bluetoothPan; in TetherEnabler()
/packages/apps/Settings/src/com/android/settings/network/tether/
DTetherSettings.java502 final BluetoothPan bluetoothPan = mBluetoothPan.get(); in isBluetoothTetheringOn() local
503 return bluetoothPan != null && bluetoothPan.isTetheringOn(); in isBluetoothTetheringOn()
/packages/modules/Connectivity/Tethering/src/com/android/networkstack/tethering/
DTethering.java848 private void setBluetoothTetheringSettings(@NonNull final BluetoothPan bluetoothPan, in setBluetoothTetheringSettings() argument
851 changeBluetoothTetheringSettings(bluetoothPan, enable); in setBluetoothTetheringSettings()
853 changeBluetoothTetheringSettingsPreT(bluetoothPan, enable); in setBluetoothTetheringSettings()
858 final int result = bluetoothPan.isTetheringOn() == enable in setBluetoothTetheringSettings()
863 private void changeBluetoothTetheringSettingsPreT(@NonNull final BluetoothPan bluetoothPan, in changeBluetoothTetheringSettingsPreT() argument
865 bluetoothPan.setBluetoothTethering(enable); in changeBluetoothTetheringSettingsPreT()
868 private void changeBluetoothTetheringSettings(@NonNull final BluetoothPan bluetoothPan, in changeBluetoothTetheringSettings() argument
870 final BluetoothPanShim panShim = mDeps.makeBluetoothPanShim(bluetoothPan); in changeBluetoothTetheringSettings()