Home
last modified time | relevance | path

Searched refs:stopVoiceRecognition (Results 1 – 9 of 9) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/hfp/
DHeadsetService.java537 public boolean stopVoiceRecognition(BluetoothDevice device) { in stopVoiceRecognition() method in HeadsetService.BluetoothHeadsetBinder
542 return service.stopVoiceRecognition(device); in stopVoiceRecognition()
904 boolean status = stopVoiceRecognition(mActiveDevice); in startVoiceRecognition()
973 boolean stopVoiceRecognition(BluetoothDevice device) { in stopVoiceRecognition() method in HeadsetService
1124 if (!stopVoiceRecognition(mActiveDevice)) { in setActiveDevice()
1299 boolean status = stopVoiceRecognition(mActiveDevice); in startScoUsingVirtualVoiceCall()
1455 boolean status = stopVoiceRecognition(mActiveDevice); in startVoiceRecognitionByHeadset()
1555 stopVoiceRecognition(mActiveDevice); in phoneStateChanged()
DHeadsetNativeInterface.java319 public boolean stopVoiceRecognition(BluetoothDevice device) { in stopVoiceRecognition() method in HeadsetNativeInterface
DHeadsetStateMachine.java843 if (!mNativeInterface.stopVoiceRecognition(mDevice)) { in processMessage()
/packages/apps/Bluetooth/src/com/android/bluetooth/hfpclient/
DHeadsetClientService.java293 public boolean stopVoiceRecognition(BluetoothDevice device) { in stopVoiceRecognition() method in HeadsetClientService.BluetoothHeadsetClientBinder
298 return service.stopVoiceRecognition(device); in stopVoiceRecognition()
636 boolean stopVoiceRecognition(BluetoothDevice device) { in stopVoiceRecognition() method in HeadsetClientService
DNativeInterface.java138 public boolean stopVoiceRecognition(byte[] address) { in stopVoiceRecognition() method in NativeInterface
DHeadsetClientStateMachine.java1140 if (mNativeInterface.stopVoiceRecognition( in processMessage()
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/hfp/
DHeadsetServiceAndStateMachineTest.java207 doReturn(true).when(mNativeInterface).stopVoiceRecognition(any(BluetoothDevice.class)); in setUp()
871 Assert.assertTrue(mHeadsetService.stopVoiceRecognition(device)); in testVoiceRecognition_SingleAgStopSuccess()
872 verify(mNativeInterface, timeout(ASYNC_CALL_TIMEOUT_MILLIS)).stopVoiceRecognition(device); in testVoiceRecognition_SingleAgStopSuccess()
1036 verify(mNativeInterface, timeout(ASYNC_CALL_TIMEOUT_MILLIS)).stopVoiceRecognition(deviceB); in testVoiceRecognition_MultiAgInitiatedSuccess()
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/bluetooth/
DBluetoothHeadsetFragment.java287 mHfpClientProfile.stopVoiceRecognition(mPickedDevice); in stopBVRA()
/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/hfpclient/
DHeadsetClientStateMachineTest.java582 when(mNativeInterface.stopVoiceRecognition(any(byte[].class))).thenReturn(true); in testVoiceRecognitionStateChange()