Home
last modified time | relevance | path

Searched refs:startBluetoothVoiceRecognition (Results 1 – 6 of 6) sorted by relevance

/packages/services/Car/tests/carservice_unit_test/src/com/android/car/bluetooth/
DCarBluetoothUserServiceTest.java173 assertThat(mCarBluetoothUserService.startBluetoothVoiceRecognition()).isFalse(); in testBvra_noProxy_doNothing()
198 assertThat(mCarBluetoothUserService.startBluetoothVoiceRecognition()).isFalse(); in testBvra_noDevices_doNothing()
226 mCarBluetoothUserService.startBluetoothVoiceRecognition(); in testBvra_defaultDeviceSupports_bvraOnDefaultDevice()
255 mCarBluetoothUserService.startBluetoothVoiceRecognition(); in testBvra_defaultDeviceNoSupport_bvraOnFirstDevice()
287 assertThat(mCarBluetoothUserService.startBluetoothVoiceRecognition()).isTrue(); in testBvra_passUpInvocationResult()
290 assertThat(mCarBluetoothUserService.startBluetoothVoiceRecognition()).isFalse(); in testBvra_passUpInvocationResult()
/packages/services/Car/car-lib/src/android/car/
DICarBluetoothUserService.aidl28 boolean startBluetoothVoiceRecognition(); in startBluetoothVoiceRecognition() method
/packages/services/Car/service/src/com/android/car/bluetooth/
DCarBluetoothService.java636 public boolean startBluetoothVoiceRecognition() { in startBluetoothVoiceRecognition() method in CarBluetoothService
639 return mCarBluetoothUserService.startBluetoothVoiceRecognition(); in startBluetoothVoiceRecognition()
DCarBluetoothUserService.java364 public boolean startBluetoothVoiceRecognition() { in startBluetoothVoiceRecognition() method in CarBluetoothUserService
/packages/services/Car/tests/carservice_unit_test/src/com/android/car/
DCarInputServiceTest.java629 verify(mCarBluetoothService, times(1)).startBluetoothVoiceRecognition(); in voiceKey_longPress_bluetoothVoiceRecognitionIsEnabled_triggersBluetoothAssist()
657 verify(mCarBluetoothService, never()).startBluetoothVoiceRecognition(); in voiceKey_shortPress_bluetoothVoiceRecognitionIsEnabled_triggersAssistUtils()
/packages/services/Car/service/src/com/android/car/
DCarInputService.java971 return mCarBluetoothService.startBluetoothVoiceRecognition(); in launchBluetoothVoiceRecognition()