/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/btservice/ |
D | BondStateMachineTest.java | 54 private static final int BOND_BONDED = BluetoothDevice.BOND_BONDED; field in BondStateMachineTest 101 deviceProperties1.mBondState = BOND_BONDED; in testCreateBondAfterRemoveBond() 102 deviceProperties2.mBondState = BOND_BONDED; in testCreateBondAfterRemoveBond() 157 testSendIntentNoPendingDevice(BOND_NONE, BOND_BONDED, BOND_BONDED, in testSendIntent() 165 testSendIntentNoPendingDevice(BOND_BONDING, BOND_BONDED, BOND_BONDED, in testSendIntent() 169 testSendIntentNoPendingDevice(BOND_BONDED, BOND_NONE, BOND_NONE, in testSendIntent() 170 true, BOND_BONDED, BOND_NONE); in testSendIntent() 171 testSendIntentNoPendingDevice(BOND_BONDED, BOND_BONDING, BOND_BONDING, in testSendIntent() 172 true, BOND_BONDED, BOND_BONDING); in testSendIntent() 173 testSendIntentNoPendingDevice(BOND_BONDED, BOND_BONDED, BOND_BONDED, in testSendIntent() [all …]
|
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/hid/ |
D | HidHostServiceTest.java | 117 BluetoothDevice.BOND_BONDED, BluetoothProfile.CONNECTION_POLICY_UNKNOWN, true); in testOkToConnect() 119 BluetoothDevice.BOND_BONDED, BluetoothProfile.CONNECTION_POLICY_FORBIDDEN, false); in testOkToConnect() 121 BluetoothDevice.BOND_BONDED, BluetoothProfile.CONNECTION_POLICY_ALLOWED, true); in testOkToConnect() 123 BluetoothDevice.BOND_BONDED, badPriorityValue, false); in testOkToConnect()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/ |
D | BondStateMachine.java | 158 sendIntent(dev, BluetoothDevice.BOND_BONDED, 0); in processMessage() 298 if (devProp != null && devProp.getBondState() == BluetoothDevice.BOND_BONDED) { in removeBond() 365 && newState != BluetoothDevice.BOND_BONDED) { in sendIntent() 374 if (oldState == BluetoothDevice.BOND_BONDED) { in sendIntent() 400 && newState == BluetoothDevice.BOND_BONDED && devProp.getUuids() == null)) { in sendIntent() 442 msg.arg1 = BluetoothDevice.BOND_BONDED; in bondStateChangeCallback() 567 } else if (state == BluetoothDevice.BOND_BONDED) { in state2str()
|
/packages/apps/Car/Settings/tests/robotests/src/com/android/car/settings/bluetooth/ |
D | BluetoothDevicePickerPreferenceControllerTest.java | 104 when(mBondedDevice.getBondState()).thenReturn(BluetoothDevice.BOND_BONDED); in setUp() 105 when(mBondedCachedDevice.getBondState()).thenReturn(BluetoothDevice.BOND_BONDED); in setUp() 255 devicePreference.getCachedDevice(), BluetoothDevice.BOND_BONDED); in onDeviceBondStateChanged_selectedDeviceBonded_sendsPickedIntent() 276 devicePreference.getCachedDevice(), BluetoothDevice.BOND_BONDED); in onDeviceBondStateChanged_selectedDeviceBonded_goesBack()
|
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/bluetooth/ |
D | BluetoothDevicePreference.java | 94 || mCachedDevice.getBondState() != BluetoothDevice.BOND_BONDED in shouldHideSecondTarget() 163 if (mCachedDevice.getBondState() == BluetoothDevice.BOND_BONDED) { in onBindViewHolder() 215 } else if (bondState == BluetoothDevice.BOND_BONDED) { in onClicked()
|
D | DevicePickerFragment.java | 125 BluetoothDevice.BOND_BONDED) || !mNeedAuth) { in onDevicePreferenceClick() 146 if (bondState == BluetoothDevice.BOND_BONDED) { in onDeviceBondStateChanged()
|
D | SavedBluetoothDeviceUpdater.java | 49 return device.getBondState() == BluetoothDevice.BOND_BONDED && !device.isConnected(); in isFilterMatched()
|
D | BluetoothPairingDialog.java | 51 if (bondState == BluetoothDevice.BOND_BONDED ||
|
/packages/apps/Settings/src/com/android/settings/bluetooth/ |
D | BluetoothDevicePreference.java | 95 || mCachedDevice.getBondState() != BluetoothDevice.BOND_BONDED in shouldHideSecondTarget() 164 if (mCachedDevice.getBondState() == BluetoothDevice.BOND_BONDED) { in onBindViewHolder() 218 } else if (bondState == BluetoothDevice.BOND_BONDED) { in onClicked()
|
D | DevicePickerFragment.java | 125 BluetoothDevice.BOND_BONDED) || !mNeedAuth) { in onDevicePreferenceClick() 146 if (bondState == BluetoothDevice.BOND_BONDED) { in onDeviceBondStateChanged()
|
D | SavedBluetoothDeviceUpdater.java | 49 return device.getBondState() == BluetoothDevice.BOND_BONDED && !device.isConnected(); in isFilterMatched()
|
D | BluetoothPairingDialog.java | 51 if (bondState == BluetoothDevice.BOND_BONDED ||
|
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/hearingaid/ |
D | HearingAidServiceTest.java | 119 doReturn(BluetoothDevice.BOND_BONDED).when(mAdapterService) in setUp() 263 BluetoothDevice.BOND_BONDED, BluetoothProfile.CONNECTION_POLICY_UNKNOWN, true); in testOkToConnect() 265 BluetoothDevice.BOND_BONDED, BluetoothProfile.CONNECTION_POLICY_FORBIDDEN, false); in testOkToConnect() 267 BluetoothDevice.BOND_BONDED, BluetoothProfile.CONNECTION_POLICY_ALLOWED, true); in testOkToConnect() 269 BluetoothDevice.BOND_BONDED, badPriorityValue, false); in testOkToConnect() 674 mService.bondStateChanged(mLeftDevice, BluetoothDevice.BOND_BONDED); in testDeleteStateMachineUnbondEvents() 685 mService.bondStateChanged(mLeftDevice, BluetoothDevice.BOND_BONDED); in testDeleteStateMachineUnbondEvents() 696 mService.bondStateChanged(mLeftDevice, BluetoothDevice.BOND_BONDED); in testDeleteStateMachineUnbondEvents()
|
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/a2dp/ |
D | A2dpServiceTest.java | 117 doReturn(BluetoothDevice.BOND_BONDED).when(mAdapterService) in setUp() 306 BluetoothDevice.BOND_BONDED, BluetoothProfile.CONNECTION_POLICY_UNKNOWN, true); in testOkToConnect() 308 BluetoothDevice.BOND_BONDED, BluetoothProfile.CONNECTION_POLICY_FORBIDDEN, false); in testOkToConnect() 310 BluetoothDevice.BOND_BONDED, BluetoothProfile.CONNECTION_POLICY_ALLOWED, true); in testOkToConnect() 312 BluetoothDevice.BOND_BONDED, badPriorityValue, false); in testOkToConnect() 666 mA2dpService.bondStateChanged(mTestDevice, BluetoothDevice.BOND_BONDED); in testDeleteStateMachineUnbondEvents() 677 mA2dpService.bondStateChanged(mTestDevice, BluetoothDevice.BOND_BONDED); in testDeleteStateMachineUnbondEvents() 688 mA2dpService.bondStateChanged(mTestDevice, BluetoothDevice.BOND_BONDED); in testDeleteStateMachineUnbondEvents()
|
/packages/apps/Car/Settings/src/com/android/car/settings/bluetooth/ |
D | BluetoothDevicePickerPreferenceController.java | 95 if (cachedDevice.getBondState() == BluetoothDevice.BOND_BONDED || !mNeedAuth) { in onDeviceClickedInternal() 128 if (bondState == BluetoothDevice.BOND_BONDED && cachedDevice.equals(mSelectedDevice)) { in onDeviceBondStateChanged()
|
D | BluetoothPairingSelectionFragment.java | 41 if (bondState == BluetoothDevice.BOND_BONDED) {
|
D | BluetoothUnbondedDevicesPreferenceController.java | 90 boolean matches = device.getBondState() != BluetoothDevice.BOND_BONDED; in matches()
|
D | BluetoothPairingDialog.java | 51 if (bondState == BluetoothDevice.BOND_BONDED ||
|
/packages/apps/Settings/tests/robotests/src/com/android/settings/bluetooth/ |
D | SavedBluetoothDeviceUpdaterTest.java | 70 when(mBluetoothDevice.getBondState()).thenReturn(BluetoothDevice.BOND_BONDED); in setUp() 82 doReturn(BluetoothDevice.BOND_BONDED).when(mBluetoothDevice).getBondState(); in update_filterMatch_addPreference()
|
D | BluetoothDevicePreferenceTest.java | 90 when(mCachedBluetoothDevice.getBondState()).thenReturn(BluetoothDevice.BOND_BONDED); in onClicked_deviceBonded_shouldLogBluetoothConnectEvent() 160 when(mCachedBluetoothDevice.getBondState()).thenReturn(BluetoothDevice.BOND_BONDED); in shouldHideSecondTarget_hasBoundDeviceAndNoRestriction_shouldReturnFalse()
|
D | BluetoothDeviceUpdaterTest.java | 187 doReturn(BluetoothDevice.BOND_BONDED).when(mBluetoothDevice).getBondState(); in isDeviceConnected_deviceConnected() 195 doReturn(BluetoothDevice.BOND_BONDED).when(mBluetoothDevice).getBondState(); in isDeviceConnected_deviceNotConnected()
|
/packages/apps/Nfc/src/com/android/nfc/handover/ |
D | BluetoothPeripheralHandover.java | 349 if (mDevice.getBondState() != BluetoothDevice.BOND_BONDED) { in nextStepConnect() 365 if (mDevice.getBondState() != BluetoothDevice.BOND_BONDED) { in nextStepConnect() 482 if (bond == BluetoothDevice.BOND_BONDED) { in handleIntent()
|
/packages/apps/Bluetooth/src/com/android/bluetooth/avrcp/ |
D | AvrcpVolumeManager.java | 113 if (value instanceof Integer && d.getBondState() == BluetoothDevice.BOND_BONDED) { in AvrcpVolumeManager() 124 if (device.getBondState() != BluetoothDevice.BOND_BONDED) { in storeVolumeForDevice()
|
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/hfp/ |
D | HeadsetServiceTest.java | 111 doReturn(BluetoothDevice.BOND_BONDED).when(mAdapterService) in setUp() 210 testOkToAcceptConnectionCase(mCurrentDevice, BluetoothDevice.BOND_BONDED, in testOkToAcceptConnection() 212 testOkToAcceptConnectionCase(mCurrentDevice, BluetoothDevice.BOND_BONDED, in testOkToAcceptConnection() 214 testOkToAcceptConnectionCase(mCurrentDevice, BluetoothDevice.BOND_BONDED, in testOkToAcceptConnection() 216 testOkToAcceptConnectionCase(mCurrentDevice, BluetoothDevice.BOND_BONDED, badPriorityValue, in testOkToAcceptConnection()
|
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/ |
D | BluetoothDevicePairer.java | 238 } else if (bondState == BluetoothDevice.BOND_BONDED) { 566 if (mTarget.getBondState() != BluetoothDevice.BOND_BONDED) { in startBonding()
|