Home
last modified time | relevance | path

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

/tools/tradefederation/core/javatests/com/android/tradefed/util/
DSl4aBluetoothUtilTest.java100 when(mPrimaryClient.rpcCall(eq(Commands.BLUETOOTH_CHECK_STATE))).thenReturn(Boolean.TRUE); in testEnable_alreadyEnabled()
107 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_CHECK_STATE)).thenReturn(Boolean.FALSE); in testEnable_notEnabled()
117 when(mPrimaryClient.rpcCall(eq(Commands.BLUETOOTH_CHECK_STATE))).thenReturn(Boolean.FALSE); in testDisable_alreadyDisabled()
124 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_CHECK_STATE)).thenReturn(Boolean.TRUE); in testDisable_notDisabled()
345 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_CHECK_STATE)).thenReturn(Boolean.TRUE); in testEnableBluetoothSnoopLog_AndroidQAndAbove()
351 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_CHECK_STATE)).thenReturn(Boolean.FALSE); in testEnableBluetoothSnoopLog_AndroidQAndAbove()
366 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_CHECK_STATE)).thenReturn(Boolean.TRUE); in testEnableBluetoothSnoopLog_AndroidPAndBelow()
372 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_CHECK_STATE)).thenReturn(Boolean.FALSE); in testEnableBluetoothSnoopLog_AndroidPAndBelow()
387 when(mPrimaryClient.rpcCall(eq(Commands.BLUETOOTH_CHECK_STATE))).thenReturn(Boolean.FALSE); in testDisableBluetoothSnoopLog_AndroidQAndAbove()
389 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_CHECK_STATE)).thenReturn(Boolean.FALSE); in testDisableBluetoothSnoopLog_AndroidQAndAbove()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/util/
DSl4aBluetoothUtil.java67 static final String BLUETOOTH_CHECK_STATE = "bluetoothCheckState"; field in Sl4aBluetoothUtil.Commands
581 boolean currentState = (Boolean) client.rpcCall(Commands.BLUETOOTH_CHECK_STATE); in toggleState()