Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/service/voice/
DVoiceInteractionService.java96 private AlwaysOnHotwordDetector mHotwordDetector; field in VoiceInteractionService
249 if (mHotwordDetector != null) { in onSoundModelsChangedInternal()
251 mHotwordDetector.onSoundModelsChanged(); in onSoundModelsChangedInternal()
275 mHotwordDetector = new AlwaysOnHotwordDetector(keyphrase, locale, callback, in createAlwaysOnHotwordDetector()
278 return mHotwordDetector; in createAlwaysOnHotwordDetector()
293 if (mHotwordDetector != null) { in safelyShutdownHotwordDetector()
294 mHotwordDetector.stopRecognition(); in safelyShutdownHotwordDetector()
295 mHotwordDetector.invalidate(); in safelyShutdownHotwordDetector()
296 mHotwordDetector = null; in safelyShutdownHotwordDetector()
309 if (mHotwordDetector == null) { in dump()
[all …]
/frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
DMainInteractionService.java63 private AlwaysOnHotwordDetector mHotwordDetector; field in MainInteractionService
73 mHotwordDetector = createAlwaysOnHotwordDetector( in onReady()
88 Intent enroll = mHotwordDetector.createEnrollIntent(); in hotwordAvailabilityChangeHelper()
93 if (mHotwordDetector.startRecognition( in hotwordAvailabilityChangeHelper()