Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/hardware/soundtrigger/
DSoundTrigger.java658 public final int captureSession; field in SoundTrigger.RecognitionEvent
697 int captureSession, int captureDelayMs, int capturePreambleMs, in RecognitionEvent() argument
702 this.captureSession = captureSession; in RecognitionEvent()
736 return captureSession; in getCaptureSession()
766 int captureSession = in.readInt(); in fromParcel() local
782 return new RecognitionEvent(status, soundModelHandle, captureAvailable, captureSession, in fromParcel()
796 dest.writeInt(captureSession); in writeToParcel()
818 result = prime * result + captureSession; in hashCode()
846 if (captureSession != other.captureSession) in equals()
876 + captureSession + ", captureDelayMs=" + captureDelayMs in toString()
[all …]
/frameworks/base/media/java/android/media/soundtrigger/
DSoundTriggerDetector.java124 AudioFormat audioFormat, int captureSession, byte[] data) { in EventPayload() argument
127 mCaptureSession = captureSession; in EventPayload()
324 event.captureFormat, event.captureSession, event.data)) in onGenericSoundTriggerDetected()
/frameworks/base/core/java/android/service/voice/
DAlwaysOnHotwordDetector.java217 AudioFormat audioFormat, int captureSession, byte[] data) { in EventPayload() argument
220 mCaptureSession = captureSession; in EventPayload()
628 event.captureFormat, event.captureSession, event.data)) in onKeyphraseDetected()
/frameworks/av/services/soundtrigger/
DSoundTriggerHalHidl.cpp825 event->capture_session = halEvent->captureSession; in fillRecognitionEventFromHal()