HomeSort by relevance Sort by last modified time
    Searched refs:getBondState (Results 1 - 25 of 36) sorted by null

1 2

  /packages/apps/Settings/src/com/android/settings/bluetooth/
CachedBluetoothDeviceManager.java 49 return cachedDevice.getBondState() == BluetoothDevice.BOND_NONE;
118 if (cachedDevice.getBondState() != BluetoothDevice.BOND_BONDED) {
155 if (cachedDevice.getBondState() != BluetoothDevice.BOND_BONDED) {
BluetoothDeviceFilter.java 87 return device.getBondState() == BluetoothDevice.BOND_BONDED;
94 return device.getBondState() != BluetoothDevice.BOND_BONDED;
BluetoothDevicePreference.java 72 if (cachedDevice.getBondState() == BluetoothDevice.BOND_BONDED) {
136 if (mCachedDevice.getBondState() == BluetoothDevice.BOND_BONDED) {
181 int bondState = mCachedDevice.getBondState();
273 switch (cachedDevice.getBondState()) {
CachedBluetoothDevice.java 285 if (getBondState() == BluetoothDevice.BOND_NONE) {
316 int state = getBondState();
432 int getBondState() {
433 return mDevice.getBondState();
473 return getBondState() == BluetoothDevice.BOND_BONDING;
637 comparison = (another.getBondState() == BluetoothDevice.BOND_BONDED ? 1 : 0) -
638 (getBondState() == BluetoothDevice.BOND_BONDED ? 1 : 0);
DevicePickerFragment.java 109 if ((btPreference.getCachedDevice().getBondState() ==
DeviceProfilesSettings.java 113 if (mCachedDevice.getBondState() == BluetoothDevice.BOND_NONE) {
BluetoothEventManager.java 363 if (device != null && device.getBondState() == BluetoothDevice.BOND_NONE) {
BluetoothSettings.java 482 if (cachedDevice.getBondState() == BluetoothDevice.BOND_BONDED) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
BondStateMachine.java 253 if (dev.getBondState() == BluetoothDevice.BOND_BONDING) {
265 if (dev.getBondState() == BluetoothDevice.BOND_BONDED) {
279 if (dev.getBondState() == BluetoothDevice.BOND_NONE) {
309 oldState = devProp.getBondState();
AdapterService.java 836 public int getBondState(BluetoothDevice device) {
840 return service.getBondState(device);
    [all...]
RemoteDevices.java 219 int getBondState() {
  /frameworks/base/core/java/android/bluetooth/
IBluetooth.aidl 61 int getBondState(in BluetoothDevice device);
BluetoothDevice.java     [all...]
  /packages/apps/Nfc/src/com/android/nfc/handover/
BluetoothPeripheralHandover.java 297 if (mDevice.getBondState() != BluetoothDevice.BOND_BONDED) {
304 if (mDevice.getBondState() != BluetoothDevice.BOND_NONE) {
313 if (mDevice.getBondState() != BluetoothDevice.BOND_BONDED) {
  /developers/build/prebuilts/gradle/BluetoothChat/Application/src/main/java/com/example/android/bluetoothchat/
DeviceListActivity.java 201 if (device.getBondState() != BluetoothDevice.BOND_BONDED) {
  /developers/samples/android/connectivity/bluetooth/BluetoothChat/Application/src/main/java/com/example/android/bluetoothchat/
DeviceListActivity.java 201 if (device.getBondState() != BluetoothDevice.BOND_BONDED) {
  /development/samples/BluetoothChat/src/com/example/android/BluetoothChat/
DeviceListActivity.java 187 if (device.getBondState() != BluetoothDevice.BOND_BONDED) {
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/accessories/
InputPairer.java 547 if (mTarget.getBondState() != BluetoothDevice.BOND_BONDED) {
624 int state = device.getBondState();
BluetoothAccessoryActivity.java 217 int state = mDevice.getBondState();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
DevicePickerActivity.java 191 if (device.getBondState() != BluetoothDevice.BOND_BONDED) {
  /frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
BluetoothTestUtils.java 791 int state = device.getBondState();
813 state = device.getBondState();
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
BluetoothControllerImpl.java 243 final boolean bonded = bondedDevice.getBondState() != BluetoothDevice.BOND_NONE;
  /packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
HeadsetStateMachine.java 399 " bondState=" + device.getBondState());
429 " bondState=" + device.getBondState());
650 device.getBondState());
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/a2dp/
A2dpStateMachine.java 648 (device.getBondState() != BluetoothDevice.BOND_NONE))){
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/hid/
HidService.java 662 (device.getBondState() == BluetoothDevice.BOND_NONE))

Completed in 539 milliseconds

1 2