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.java727 public int getBondState(BluetoothDevice device) { method in class:AdapterService.AdapterServiceBinder
731 return service.getBondState(device);
1040 if (deviceProp != null && deviceProp.getBondState() != BluetoothDevice.BOND_NONE) {
1188 if (deviceProp == null || deviceProp.getBondState() != BluetoothDevice.BOND_BONDED) {
1197 int getBondState(BluetoothDevice device) { method in class:AdapterService
1203 return deviceProp.getBondState();
1259 if (deviceProp == null || deviceProp.getBondState() != BluetoothDevice.BOND_BONDING) {
1270 if (deviceProp == null || deviceProp.getBondState() != BluetoothDevice.BOND_BONDING) {
1282 if (deviceProp == null || deviceProp.getBondState() != BluetoothDevice.BOND_BONDING) {
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DCachedBluetoothDevice.java273 if (getBondState() == BluetoothDevice.BOND_NONE) {
304 int state = getBondState();
407 int getBondState() { method in class:CachedBluetoothDevice
408 return mDevice.getBondState();
448 return getBondState() == BluetoothDevice.BOND_BONDING;
608 comparison = (another.getBondState() == BluetoothDevice.BOND_BONDED ? 1 : 0) -
609 (getBondState() == BluetoothDevice.BOND_BONDED ? 1 : 0);

Completed in 49 milliseconds