Home
last modified time | relevance | path

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

/tools/tradefederation/core/javatests/com/android/tradefed/util/
DSl4aBluetoothUtilTest.java134 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_GET_LOCAL_ADDRESS)).thenReturn("address"); in testGetAddress()
140 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_GET_LOCAL_ADDRESS)).thenReturn("address"); in testGetAddress_calledTwice()
143 verify(mPrimaryClient, times(1)).rpcCall(Commands.BLUETOOTH_GET_LOCAL_ADDRESS); in testGetAddress_calledTwice()
160 when(mSecondaryClient.rpcCall(Commands.BLUETOOTH_GET_LOCAL_ADDRESS)) in testPair_alreadyPaired()
175 when(mSecondaryClient.rpcCall(Commands.BLUETOOTH_GET_LOCAL_ADDRESS)) in testPair_success()
193 when(mSecondaryClient.rpcCall(Commands.BLUETOOTH_GET_LOCAL_ADDRESS)) in testPair_timeout()
238 when(mSecondaryClient.rpcCall(Commands.BLUETOOTH_GET_LOCAL_ADDRESS)) in testConnect_notPaired()
248 when(mSecondaryClient.rpcCall(Commands.BLUETOOTH_GET_LOCAL_ADDRESS)) in testConnect_success()
293 when(mSecondaryClient.rpcCall(Commands.BLUETOOTH_GET_LOCAL_ADDRESS)) in testDisconnect_success()
419 when(mSecondaryClient.rpcCall(Commands.BLUETOOTH_GET_LOCAL_ADDRESS)) in testChangeProfileAccessPermission()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/util/
DSl4aBluetoothUtil.java69 static final String BLUETOOTH_GET_LOCAL_ADDRESS = "bluetoothGetLocalAddress"; field in Sl4aBluetoothUtil.Commands
279 address = (String) client.rpcCall(Commands.BLUETOOTH_GET_LOCAL_ADDRESS); in getAddress()