/aosp14/frameworks/base/services/tests/voiceinteractiontests/src/com/android/server/soundtrigger/ |
H A D | SoundTriggerTest.java | 21 import android.hardware.soundtrigger.SoundTrigger.KeyphraseRecognitionEvent; 335 KeyphraseRecognitionEvent re = new KeyphraseRecognitionEvent( in testKeyphraseRecognitionEventParcelUnparcel_noKeyphrases() 359 KeyphraseRecognitionEvent unparceled = in testKeyphraseRecognitionEventParcelUnparcel_noKeyphrases() 360 KeyphraseRecognitionEvent.CREATOR.createFromParcel(parcel); in testKeyphraseRecognitionEventParcelUnparcel_noKeyphrases() 369 KeyphraseRecognitionEvent re = new KeyphraseRecognitionEvent( in testKeyphraseRecognitionEventParcelUnparcel_zeroData() 393 KeyphraseRecognitionEvent unparceled = in testKeyphraseRecognitionEventParcelUnparcel_zeroData() 394 KeyphraseRecognitionEvent.CREATOR.createFromParcel(parcel); in testKeyphraseRecognitionEventParcelUnparcel_zeroData() 419 KeyphraseRecognitionEvent re = new KeyphraseRecognitionEvent( in testKeyphraseRecognitionEventParcelUnparcel_largeData() 443 KeyphraseRecognitionEvent unparceled = in testKeyphraseRecognitionEventParcelUnparcel_largeData() 444 KeyphraseRecognitionEvent.CREATOR.createFromParcel(parcel); in testKeyphraseRecognitionEventParcelUnparcel_largeData()
|
/aosp14/frameworks/base/core/java/android/hardware/soundtrigger/ |
H A D | IRecognitionStatusCallback.aidl | 32 void onKeyphraseDetected(in SoundTrigger.KeyphraseRecognitionEvent recognitionEvent); in onKeyphraseDetected()
|
H A D | SoundTrigger.aidl | 22 parcelable SoundTrigger.KeyphraseRecognitionEvent;
|
H A D | SoundTrigger.java | 1906 public static class KeyphraseRecognitionEvent extends RecognitionEvent implements Parcelable { class in SoundTrigger 1925 public KeyphraseRecognitionEvent(int status, int soundModelHandle, in KeyphraseRecognitionEvent() method in SoundTrigger.KeyphraseRecognitionEvent 1939 public static final @NonNull Parcelable.Creator<KeyphraseRecognitionEvent> CREATOR 1940 = new Parcelable.Creator<KeyphraseRecognitionEvent>() { 1941 public KeyphraseRecognitionEvent createFromParcel(Parcel in) { 1942 return KeyphraseRecognitionEvent.fromParcelForKeyphrase(in); 1945 public KeyphraseRecognitionEvent[] newArray(int size) { 1946 return new KeyphraseRecognitionEvent[size]; 1950 private static KeyphraseRecognitionEvent fromParcelForKeyphrase(Parcel in) { in fromParcelForKeyphrase() 1975 return new KeyphraseRecognitionEvent(status, soundModelHandle, in fromParcelForKeyphrase() [all …]
|
H A D | ConversionUtil.java | 252 return new SoundTrigger.KeyphraseRecognitionEvent(recognitionEvent.common.status, in aidl2apiPhraseRecognitionEvent()
|
/aosp14/frameworks/base/core/java/com/android/internal/app/ |
H A D | IHotwordRecognitionStatusCallback.aidl | 40 in SoundTrigger.KeyphraseRecognitionEvent recognitionEvent, in onKeyphraseDetected()
|
H A D | IVoiceInteractionManagerService.aidl | 358 in SoundTrigger.KeyphraseRecognitionEvent event, in triggerHardwareRecognitionEventForTest()
|
/aosp14/frameworks/base/services/voiceinteraction/java/com/android/server/soundtrigger/ |
H A D | SoundTriggerHelper.java | 31 import android.hardware.soundtrigger.SoundTrigger.KeyphraseRecognitionEvent; 770 if (!(event instanceof KeyphraseRecognitionEvent) && in onRecognition() 785 onKeyphraseRecognitionLocked((KeyphraseRecognitionEvent) event); in onRecognition() 795 return event instanceof KeyphraseRecognitionEvent; in isKeyphraseRecognitionEvent() 914 private int getKeyphraseIdFromEvent(KeyphraseRecognitionEvent event) { in getKeyphraseIdFromEvent() 920 ((KeyphraseRecognitionEvent) event).keyphraseExtras; in getKeyphraseIdFromEvent() 930 private void onKeyphraseRecognitionLocked(KeyphraseRecognitionEvent event) { in onKeyphraseRecognitionLocked() 955 modelData.getCallback().onKeyphraseDetected((KeyphraseRecognitionEvent) event); in onKeyphraseRecognitionLocked()
|
H A D | SoundTriggerService.java | 1401 public void onKeyphraseDetected(SoundTrigger.KeyphraseRecognitionEvent event) { in onKeyphraseDetected()
|
/aosp14/frameworks/base/core/java/android/service/voice/ |
H A D | ISandboxedDetectionService.aidl | 40 in SoundTrigger.KeyphraseRecognitionEvent event, in detectFromDspSource()
|
H A D | AlwaysOnHotwordDetector.java | 43 import android.hardware.soundtrigger.SoundTrigger.KeyphraseRecognitionEvent; 616 Builder(SoundTrigger.KeyphraseRecognitionEvent keyphraseRecognitionEvent) { in Builder() 993 new KeyphraseRecognitionEvent(status, soundModelHandle, captureAvailable, in triggerHardwareRecognitionEventForTest() 1613 KeyphraseRecognitionEvent event, HotwordDetectedResult result) { in onKeyphraseDetected()
|
H A D | VisualQueryDetectionService.java | 131 SoundTrigger.KeyphraseRecognitionEvent event,
|
H A D | HotwordDetectionService.java | 146 SoundTrigger.KeyphraseRecognitionEvent event,
|
H A D | SoftwareHotwordDetector.java | 215 SoundTrigger.KeyphraseRecognitionEvent recognitionEvent, in onKeyphraseDetected()
|
H A D | VisualQueryDetector.java | 348 SoundTrigger.KeyphraseRecognitionEvent recognitionEvent, in onKeyphraseDetected()
|
/aosp14/frameworks/base/media/java/android/media/soundtrigger/ |
H A D | SoundTriggerDetector.java | 386 public void onKeyphraseDetected(SoundTrigger.KeyphraseRecognitionEvent event) { in onKeyphraseDetected()
|
/aosp14/frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/ |
H A D | HotwordDetectionConnection.java | 437 SoundTrigger.KeyphraseRecognitionEvent event, in triggerHardwareRecognitionEventForTestLocked() 445 private void detectFromDspSource(SoundTrigger.KeyphraseRecognitionEvent recognitionEvent, in detectFromDspSource() 572 public void onKeyphraseDetected(SoundTrigger.KeyphraseRecognitionEvent recognitionEvent) in onKeyphraseDetected()
|
H A D | DspTrustedHotwordDetectorSession.java | 97 void detectFromDspSourceLocked(SoundTrigger.KeyphraseRecognitionEvent recognitionEvent, in detectFromDspSourceLocked()
|
H A D | DetectorSession.java | 792 SoundTrigger.KeyphraseRecognitionEvent recognitionEvent) { in enforceExtraKeyphraseIdNotLeaked()
|
H A D | VoiceInteractionManagerServiceImpl.java | 869 SoundTrigger.KeyphraseRecognitionEvent event, in triggerHardwareRecognitionEventForTestLocked()
|
H A D | VoiceInteractionManagerService.java | 1504 SoundTrigger.KeyphraseRecognitionEvent event, in triggerHardwareRecognitionEventForTest()
|
/aosp14/frameworks/base/boot/ |
H A D | preloaded-classes | 3139 android.hardware.soundtrigger.SoundTrigger$KeyphraseRecognitionEvent$1 3140 android.hardware.soundtrigger.SoundTrigger$KeyphraseRecognitionEvent
|
H A D | boot-image-profile.txt | 25923 Landroid/hardware/soundtrigger/SoundTrigger$KeyphraseRecognitionEvent$1; 25924 Landroid/hardware/soundtrigger/SoundTrigger$KeyphraseRecognitionEvent;
|
/aosp14/frameworks/base/config/ |
H A D | preloaded-classes | 3143 android.hardware.soundtrigger.SoundTrigger$KeyphraseRecognitionEvent$1 3144 android.hardware.soundtrigger.SoundTrigger$KeyphraseRecognitionEvent
|
/aosp14/frameworks/base/boot/hiddenapi/ |
H A D | hiddenapi-max-target-o.txt | 21998 …roxy;->onKeyphraseDetected(Landroid/hardware/soundtrigger/SoundTrigger$KeyphraseRecognitionEvent;)V 22011 …back;->onKeyphraseDetected(Landroid/hardware/soundtrigger/SoundTrigger$KeyphraseRecognitionEvent;)V 22045 Landroid/hardware/soundtrigger/SoundTrigger$KeyphraseRecognitionEvent;->CREATOR:Landroid/os/Parcela… 22046 …igger$KeyphraseRecognitionEvent;->fromParcelForKeyphrase(Landroid/os/Parcel;)Landroid/hardware/sou… 30472 …back;->onKeyphraseDetected(Landroid/hardware/soundtrigger/SoundTrigger$KeyphraseRecognitionEvent;)V 50505 …ener;->onKeyphraseDetected(Landroid/hardware/soundtrigger/SoundTrigger$KeyphraseRecognitionEvent;)V
|