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.java659 public final int captureSession; field in SoundTrigger.RecognitionEvent
698 int captureSession, int captureDelayMs, int capturePreambleMs, in RecognitionEvent() argument
703 this.captureSession = captureSession; in RecognitionEvent()
737 return captureSession; in getCaptureSession()
767 int captureSession = in.readInt(); in fromParcel() local
783 return new RecognitionEvent(status, soundModelHandle, captureAvailable, captureSession, in fromParcel()
797 dest.writeInt(captureSession); in writeToParcel()
819 result = prime * result + captureSession; in hashCode()
847 if (captureSession != other.captureSession) in equals()
878 + 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.java216 AudioFormat audioFormat, int captureSession, byte[] data) { in EventPayload() argument
219 mCaptureSession = captureSession; in EventPayload()
627 event.captureFormat, event.captureSession, event.data)) in onKeyphraseDetected()
/frameworks/av/services/soundtrigger/
DSoundTriggerHalHidl.cpp825 event->capture_session = halEvent->captureSession; in fillRecognitionEventFromHal()