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

/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
H A DRemoteDevices.java206 int getBondState() { method in class:RemoteDevices.DeviceProperties
H A DAdapterService.java729 public int getBondState(BluetoothDevice device) { method in class:AdapterService.AdapterServiceBinder
733 return service.getBondState(device);
1054 if (deviceProp != null && deviceProp.getBondState() != BluetoothDevice.BOND_NONE) {
1206 if (deviceProp == null || deviceProp.getBondState() != BluetoothDevice.BOND_BONDED) {
1215 int getBondState(BluetoothDevice device) { method in class:AdapterService
1221 return deviceProp.getBondState();
1278 if (deviceProp == null || deviceProp.getBondState() != BluetoothDevice.BOND_BONDING) {
1289 if (deviceProp == null || deviceProp.getBondState() != BluetoothDevice.BOND_BONDING) {
1302 if (deviceProp == null || deviceProp.getBondState() != BluetoothDevice.BOND_BONDING) {
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DCachedBluetoothDevice.java295 if (getBondState() == BluetoothDevice.BOND_NONE) {
326 int state = getBondState();
432 int getBondState() { method in class:CachedBluetoothDevice
433 return mDevice.getBondState();
473 return getBondState() == BluetoothDevice.BOND_BONDING;
639 comparison = (another.getBondState() == BluetoothDevice.BOND_BONDED ? 1 : 0) -
640 (getBondState() == BluetoothDevice.BOND_BONDED ? 1 : 0);

Completed in 14 milliseconds