Home
last modified time | relevance | path

Searched refs:ACTION_BOND_STATE_CHANGED (Results 1 – 25 of 30) sorted by relevance

12

/packages/modules/Bluetooth/framework/tests/bumble/src/android/bluetooth/pairing/
DPairingTest.java135 } else if (BluetoothDevice.ACTION_BOND_STATE_CHANGED.equals(action)) { in setUp()
182 BluetoothDevice.ACTION_BOND_STATE_CHANGED, BluetoothDevice.ACTION_PAIRING_REQUEST); in testBrEdrPairing_phoneInitiatedBrEdrInquiryOnlyJustWorks()
191 hasAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED), in testBrEdrPairing_phoneInitiatedBrEdrInquiryOnlyJustWorks()
209 hasAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED), in testBrEdrPairing_phoneInitiatedBrEdrInquiryOnlyJustWorks()
216 BluetoothDevice.ACTION_BOND_STATE_CHANGED, BluetoothDevice.ACTION_PAIRING_REQUEST); in testBrEdrPairing_phoneInitiatedBrEdrInquiryOnlyJustWorks()
236 BluetoothDevice.ACTION_BOND_STATE_CHANGED, in testBrEdrPairing_phoneInitiatedBrEdrInquiryOnlyJustWorksWhileSdpConnected()
253 hasAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED), in testBrEdrPairing_phoneInitiatedBrEdrInquiryOnlyJustWorksWhileSdpConnected()
271 hasAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED), in testBrEdrPairing_phoneInitiatedBrEdrInquiryOnlyJustWorksWhileSdpConnected()
279 BluetoothDevice.ACTION_BOND_STATE_CHANGED, in testBrEdrPairing_phoneInitiatedBrEdrInquiryOnlyJustWorksWhileSdpConnected()
310 registerIntentActions(BluetoothDevice.ACTION_BOND_STATE_CHANGED); in testCancelBondLe_WithGattServiceDiscovery()
[all …]
/packages/apps/Car/Settings/src/com/android/car/settings/bluetooth/
DBluetoothPairingDialog.java50 if (BluetoothDevice.ACTION_BOND_STATE_CHANGED.equals(action)) {
102 registerReceiver(mReceiver, new IntentFilter(BluetoothDevice.ACTION_BOND_STATE_CHANGED)); in onCreate()
DBluetoothPairingService.java78 if (action.equals(BluetoothDevice.ACTION_BOND_STATE_CHANGED)) {
165 filter.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED); in onStartCommand()
/packages/modules/Bluetooth/framework/api/
Dlint-baseline.txt20 BroadcastBehavior: android.bluetooth.BluetoothDevice#ACTION_BOND_STATE_CHANGED:
21 Field 'ACTION_BOND_STATE_CHANGED' is missing @BroadcastBehavior
Dmodule-lib-lint-baseline.txt24 BroadcastBehavior: android.bluetooth.BluetoothDevice#ACTION_BOND_STATE_CHANGED:
25 Field 'ACTION_BOND_STATE_CHANGED' is missing @BroadcastBehavior
Dsystem-lint-baseline.txt24 BroadcastBehavior: android.bluetooth.BluetoothDevice#ACTION_BOND_STATE_CHANGED:
25 Field 'ACTION_BOND_STATE_CHANGED' is missing @BroadcastBehavior
/packages/apps/Settings/src/com/android/settings/bluetooth/
DBluetoothPairingDialog.java50 if (BluetoothDevice.ACTION_BOND_STATE_CHANGED.equals(action)) {
106 registerReceiver(mReceiver, new IntentFilter(BluetoothDevice.ACTION_BOND_STATE_CHANGED)); in onCreate()
DBluetoothPairingService.java90 if (action.equals(BluetoothDevice.ACTION_BOND_STATE_CHANGED)) {
152 filter.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED); in onStartCommand()
/packages/modules/Bluetooth/android/pandora/server/src/
DSecurityStorage.kt58 intentFilter.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED)
102 .filter { it.action == BluetoothDevice.ACTION_BOND_STATE_CHANGED } in deleteBond()
DSecurity.kt101 intentFilter.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED) in <lambda>()
159 .filter { it.action == BluetoothDevice.ACTION_BOND_STATE_CHANGED } in <lambda>()
DHfpHandsfree.kt60 val intentFilter = IntentFilter(BluetoothDevice.ACTION_BOND_STATE_CHANGED) in <lambda>()
DHfp.kt67 val intentFilter = IntentFilter(BluetoothDevice.ACTION_BOND_STATE_CHANGED)
DHost.kt127 intentFilter.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED) in <lambda>()
256 .filter { it.action == BluetoothDevice.ACTION_BOND_STATE_CHANGED } in waitBondIntent()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
DBluetoothDevicesService.java111 if (BluetoothDevice.ACTION_BOND_STATE_CHANGED.equals(action)) {
183 filter.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED); in onCreate()
DBluetoothPairingDialog.java90 if (BluetoothDevice.ACTION_BOND_STATE_CHANGED.equals(action)) {
201 filter.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED); in onResume()
DBluetoothAccessoryFragment.java166 adapterIntentFilter.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED); in onStart()
440 adapterIntentFilter.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED); in onStart()
DBluetoothDevicePairer.java670 IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_BOND_STATE_CHANGED); in registerLinkStatusReceiver()
/packages/services/Car/service/src/com/android/car/bluetooth/
DBluetoothConnectionRetryManager.java85 if (BluetoothDevice.ACTION_BOND_STATE_CHANGED.equals(action)) { in onReceive()
376 filter.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED); in init()
DBluetoothDeviceManager.java135 case BluetoothDevice.ACTION_BOND_STATE_CHANGED: in onReceive()
297 filter.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED); in start()
DFastPairGattServer.java350 case BluetoothDevice.ACTION_BOND_STATE_CHANGED:
512 filter.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED); in start()
/packages/apps/Nfc/src/com/android/nfc/handover/
DBluetoothPeripheralHandover.java172 filter.addAction(BluetoothDevice.ACTION_BOND_STATE_CHANGED); in start()
480 } else if (BluetoothDevice.ACTION_BOND_STATE_CHANGED.equals(action) in handleIntent()
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/bluetooth/
DBluetoothConnectionRetryManagerTest.java122 Intent intent = new Intent(BluetoothDevice.ACTION_BOND_STATE_CHANGED); in sendBondStateChanged()
DBluetoothDeviceManagerTest.java245 Intent intent = new Intent(BluetoothDevice.ACTION_BOND_STATE_CHANGED); in sendBondStateChanged()
/packages/modules/Bluetooth/framework/tests/bumble/src/android/bluetooth/
DRfcommTest.kt74 context.registerReceiver(receiver, IntentFilter(BluetoothDevice.ACTION_BOND_STATE_CHANGED)) in bondingFlow()
/packages/modules/Bluetooth/android/app/tests/unit/src/com/android/bluetooth/btservice/
DBondStateMachineTest.java737 Assert.assertEquals(BluetoothDevice.ACTION_BOND_STATE_CHANGED, intent.getAction()); in verifyBondStateChangeIntent()

12