Home
last modified time | relevance | path

Searched refs:sendBsir (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/hfp/
DHeadsetServiceAndStateMachineTest.java205 doReturn(true).when(mNativeInterface).sendBsir(any(BluetoothDevice.class), anyBoolean()); in setUp()
932 verify(mNativeInterface, timeout(ASYNC_CALL_TIMEOUT_MILLIS)).sendBsir(deviceA, false); in testVoiceRecognition_MultiHfInitiatedSwitchActiveDeviceSuccess()
933 verify(mNativeInterface, timeout(ASYNC_CALL_TIMEOUT_MILLIS)).sendBsir(deviceB, false); in testVoiceRecognition_MultiHfInitiatedSwitchActiveDeviceSuccess()
985 verify(mNativeInterface, timeout(ASYNC_CALL_TIMEOUT_MILLIS)).sendBsir(deviceA, false); in testVoiceRecognition_MultiHfInitiatedSwitchActiveDeviceReplyWrongHfSuccess()
986 verify(mNativeInterface, timeout(ASYNC_CALL_TIMEOUT_MILLIS)).sendBsir(deviceB, false); in testVoiceRecognition_MultiHfInitiatedSwitchActiveDeviceReplyWrongHfSuccess()
1038 verify(mNativeInterface, timeout(ASYNC_CALL_TIMEOUT_MILLIS)).sendBsir(deviceA, false); in testVoiceRecognition_MultiAgInitiatedSuccess()
1039 verify(mNativeInterface, timeout(ASYNC_CALL_TIMEOUT_MILLIS)).sendBsir(deviceB, false); in testVoiceRecognition_MultiAgInitiatedSuccess()
1077 verify(mNativeInterface, timeout(ASYNC_CALL_TIMEOUT_MILLIS)).sendBsir(deviceA, false); in testVoiceRecognition_MultiAgInitiatedDeviceNotActive()
1078 verify(mNativeInterface, timeout(ASYNC_CALL_TIMEOUT_MILLIS)).sendBsir(deviceB, false); in testVoiceRecognition_MultiAgInitiatedDeviceNotActive()
DHeadsetServiceTest.java133 doReturn(true).when(mNativeInterface).sendBsir(any(BluetoothDevice.class), anyBoolean()); in setUp()
/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
DHeadsetNativeInterface.java466 public boolean sendBsir(BluetoothDevice device, boolean value) { in sendBsir() method in HeadsetNativeInterface
DHeadsetStateMachine.java894 mNativeInterface.sendBsir(mDevice, message.arg1 == 1); in processMessage()