Home
last modified time | relevance | path

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

/tools/tradefederation/core/javatests/com/android/tradefed/util/
DSl4aBluetoothUtilTest.java108 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_TOGGLE_STATE, Boolean.TRUE)) in testEnable_notEnabled()
125 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_TOGGLE_STATE, Boolean.FALSE)) in testDisable_notDisabled()
346 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_TOGGLE_STATE, Boolean.FALSE)) in testEnableBluetoothSnoopLog_AndroidQAndAbove()
352 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_TOGGLE_STATE, Boolean.TRUE)) in testEnableBluetoothSnoopLog_AndroidQAndAbove()
367 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_TOGGLE_STATE, Boolean.FALSE)) in testEnableBluetoothSnoopLog_AndroidPAndBelow()
373 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_TOGGLE_STATE, Boolean.TRUE)) in testEnableBluetoothSnoopLog_AndroidPAndBelow()
390 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_TOGGLE_STATE, Boolean.TRUE)) in testDisableBluetoothSnoopLog_AndroidQAndAbove()
407 when(mPrimaryClient.rpcCall(Commands.BLUETOOTH_TOGGLE_STATE, Boolean.TRUE)) in testDisableBluetoothSnoopLog_AndroidPAndBelow()
/tools/tradefederation/core/src/com/android/tradefed/util/
DSl4aBluetoothUtil.java68 static final String BLUETOOTH_TOGGLE_STATE = "bluetoothToggleState"; field in Sl4aBluetoothUtil.Commands
586 Boolean result = (Boolean) client.rpcCall(Commands.BLUETOOTH_TOGGLE_STATE, targetState); in toggleState()