Home
last modified time | relevance | path

Searched refs:BLUETOOTH_UNBOND (Results 1 – 2 of 2) sorted by relevance

/tools/tradefederation/core/javatests/com/android/tradefed/util/
DSl4aBluetoothUtilTest.java207 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_UNBOND, "address_1")).thenReturn(true); in testUnpair_success()
208 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_UNBOND, "address_2")).thenReturn(true); in testUnpair_success()
218 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_UNBOND, "address_1")).thenReturn(true); in testUnpair_successWithWarning()
219 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_UNBOND, "address_2")).thenReturn(false); in testUnpair_successWithWarning()
228 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_UNBOND, "address_1")).thenReturn(false); in testUnpair_fail()
229 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_UNBOND, "address_2")).thenReturn(true); in testUnpair_fail()
/tools/tradefederation/core/src/com/android/tradefed/util/
DSl4aBluetoothUtil.java75 static final String BLUETOOTH_UNBOND = "bluetoothUnbond"; field in Sl4aBluetoothUtil.Commands
375 Boolean res = (Boolean) client.rpcCall(Commands.BLUETOOTH_UNBOND, address); in unpairAll()