Searched defs:getBondState (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
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;
/frameworks/base/core/java/android/bluetooth/
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 ("+

Completed in 86 milliseconds