Home
last modified time | relevance | path

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

/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowBluetoothDeviceTest.java55 assertThat(device.getBondState()).isEqualTo(BOND_NONE); in canSetAndGetBondState()
58 assertThat(device.getBondState()).isEqualTo(BOND_BONDED); in canSetAndGetBondState()
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowBluetoothDevice.java89 protected int getBondState() { in getBondState() method in ShadowBluetoothDevice
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/
DBluetoothDiscoveryHelper.java78 if (device.getBondState() != BluetoothDevice.BOND_BONDED) { in onReceive()
/external/mobly-bundled-snippets/src/main/java/com/google/android/mobly/snippet/bundled/bluetooth/
DBluetoothAdapterSnippet.java366 if (!Utils.waitUntil(() -> device.getBondState() == BluetoothDevice.BOND_BONDED, 120)) { in btPairDevice()
382 () -> device.getBondState() == BluetoothDevice.BOND_NONE, 30)) { in btUnpairDevice()
/external/robolectric/robolectric/src/test/java/org/robolectric/shadows/
DShadowBluetoothDeviceTest.java78 assertThat(device.getBondState()).isEqualTo(BOND_NONE); in canSetAndGetBondState()
81 assertThat(device.getBondState()).isEqualTo(BOND_BONDED); in canSetAndGetBondState()
396 assertThrows(SecurityException.class, device::getBondState); in getBondState_noBluetoothConnectPermission_throwsException()
DShadowBluetoothAdapterTest.java394 assertThat(remoteDevice2.getBondState()).isEqualTo(BluetoothDevice.BOND_NONE); in testGetRemoteDevice_sameState()
396 assertThat(remoteDevice2.getBondState()).isEqualTo(BluetoothDevice.BOND_BONDED); in testGetRemoteDevice_sameState()
/external/robolectric/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowBluetoothDevice.java217 protected int getBondState() { in getBondState() method in ShadowBluetoothDevice
/external/mobly-bundled-snippets/src/main/java/com/google/android/mobly/snippet/bundled/utils/
DJsonSerializer.java138 MbsEnums.BLUETOOTH_DEVICE_BOND_STATE.getString(data.getBondState()); in serializeBluetoothDevice()
/external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
DJsonBuilder.java527 deviceInfo.put("state", data.getBondState()); in buildJsonBluetoothDevice()