Searched refs:getBondState (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DCachedBluetoothDeviceManager.java51 return cachedDevice.getBondState() == BluetoothDevice.BOND_NONE;
121 if (cachedDevice.getBondState() != BluetoothDevice.BOND_BONDED) {
158 if (cachedDevice.getBondState() != BluetoothDevice.BOND_BONDED) {
H A DBluetoothDeviceFilter.java87 return device.getBondState() == BluetoothDevice.BOND_BONDED;
94 return device.getBondState() != BluetoothDevice.BOND_BONDED;
H A DCachedBluetoothDevice.java285 if (getBondState() == BluetoothDevice.BOND_NONE) {
316 int state = getBondState();
432 public int getBondState() { method in class:CachedBluetoothDevice
433 return mDevice.getBondState();
473 return getBondState() == BluetoothDevice.BOND_BONDING;
649 comparison = (another.getBondState() == BluetoothDevice.BOND_BONDED ? 1 : 0) -
650 (getBondState() == BluetoothDevice.BOND_BONDED ? 1 : 0);
804 if (mDevice.getBondState() != BluetoothDevice.BOND_BONDED) return;
876 return getBondState() == BluetoothDevice.BOND_BONDING ? R.string.bluetooth_pairing : 0;
H A DBluetoothEventManager.java370 if (device != null && device.getBondState() == BluetoothDevice.BOND_NONE) {
/frameworks/base/core/java/android/bluetooth/
H A DIBluetooth.aidl61 int getBondState(in BluetoothDevice device);
H A DBluetoothDevice.java962 public int getBondState() { method in class:BluetoothDevice
968 return sService.getBondState(this);
973 Log.e(TAG, "NullPointerException for getBondState() of device ("+
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
H A DBluetoothTile.java224 if (device.getBondState() == BluetoothDevice.BOND_NONE) continue;
247 if (device.getBondState() != BluetoothDevice.BOND_NONE) {
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DBluetoothControllerImpl.java91 return device.getName() + " " + device.getBondState() + " " + device.isConnected();
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
H A DBluetoothTestUtils.java792 int state = device.getBondState();
814 state = device.getBondState();
854 int state = device.getBondState();
876 if (device.getBondState() == BluetoothDevice.BOND_NONE

Completed in 1682 milliseconds