Home
last modified time | relevance | path

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

12

/aosp12/frameworks/base/core/java/android/hardware/soundtrigger/
H A DSoundTrigger.java1138 public final int captureSession; field in SoundTrigger.RecognitionEvent
1185 this.captureSession = captureSession; in RecognitionEvent()
1219 return captureSession; in getCaptureSession()
1250 int captureSession = in.readInt(); in fromParcel() local
1280 dest.writeInt(captureSession); in writeToParcel()
1302 result = prime * result + captureSession; in hashCode()
1330 if (captureSession != other.captureSession) in equals()
1361 + captureSession + ", captureDelayMs=" + captureDelayMs in toString()
1673 int captureSession, int captureDelayMs, int capturePreambleMs, in KeyphraseRecognitionEvent() argument
1697 int captureSession = in.readInt(); in fromParcelForKeyphrase() local
[all …]
H A DConversionUtil.java203 modelHandle, aidlEvent.captureAvailable, aidlEvent.captureSession, in aidl2apiRecognitionEvent()
221 aidlEvent.common.captureSession, aidlEvent.common.captureDelayMs, in aidl2apiPhraseRecognitionEvent()
/aosp12/frameworks/base/core/java/android/service/voice/
H A DAlwaysOnHotwordDetector.java353 AudioFormat audioFormat, int captureSession, byte[] data) { in EventPayload() argument
354 this(triggerAvailable, captureAvailable, audioFormat, captureSession, data, null, in EventPayload()
359 AudioFormat audioFormat, int captureSession, byte[] data, in EventPayload() argument
361 this(triggerAvailable, captureAvailable, audioFormat, captureSession, data, in EventPayload()
376 AudioFormat audioFormat, int captureSession, byte[] data, in EventPayload() argument
380 mCaptureSession = captureSession; in EventPayload()
638 boolean captureAvailable, int captureSession, int captureDelayMs, int capturePreambleMs, in triggerHardwareRecognitionEventForTest() argument
649 captureSession, captureDelayMs, capturePreambleMs, triggerInData, in triggerHardwareRecognitionEventForTest()
1172 event.captureFormat, event.captureSession, event.data, result)) in onKeyphraseDetected()
H A DHotwordDetectionService.java145 event.captureFormat, event.captureSession, event.data),
/aosp12/packages/apps/Camera2/src/com/android/camera/burst/
H A DBurstFacadeImpl.java133 CaptureSession captureSession = captureSessionCreator.createAndStartEmpty(); in startBurst() local
134 mActiveStackSaver = captureSession.getStackSaver(); in startBurst()
158 captureSession); in startBurst()
H A DBurstController.java106 CaptureSession captureSession); in startBurst() argument
/aosp12/packages/apps/Camera2/src/com/android/camera/one/v2/errorhandling/
H A DRepeatFailureHandlerComponent.java49 FatalErrorHandler fatalErrorHandler, CameraCaptureSessionProxy captureSession, in create() argument
52 FastCameraReset fastCameraReset = new FastCameraReset(logFactory, captureSession, in create()
H A DFastCameraReset.java45 FastCameraReset(Logger.Factory logFactory, CameraCaptureSessionProxy captureSession, in FastCameraReset() argument
49 mCaptureSession = captureSession; in FastCameraReset()
/aosp12/packages/apps/Camera2/src/com/android/camera/one/v2/core/
H A DFrameServerImpl.java83 public FrameServerImpl(FrameServer.Session captureSession) { in FrameServerImpl() argument
84 mCaptureSession = captureSession; in FrameServerImpl()
H A DTagDispatchCaptureSession.java104 public TagDispatchCaptureSession(CameraCaptureSessionProxy captureSession, Handler in TagDispatchCaptureSession() argument
106 mCaptureSession = captureSession; in TagDispatchCaptureSession()
/aosp12/packages/apps/Camera2/src/com/android/camera/one/v2/initialization/
H A DPreviewStarter.java90 CameraCaptureSessionProxy captureSession) throws Exception { in startPreview()
91 mSessionListener.onCameraCaptureSessionCreated(captureSession, surface); in startPreview()
/aosp12/packages/apps/Camera2/src/com/android/camera/processing/imagebackend/
H A DImageShadowTask.java73 CaptureSession captureSession, Optional<Runnable> runnableWhenDone) { in ImageShadowTask() argument
75 mCaptureSession = captureSession; in ImageShadowTask()
H A DTaskPreviewChainedJpeg.java48 CaptureSession captureSession, in TaskPreviewChainedJpeg() argument
51 super(image, executor, imageTaskManager, ProcessingPriority.AVERAGE, captureSession, in TaskPreviewChainedJpeg()
H A DTaskChainedCompressImageToJpeg.java41 ImageTaskManager imageTaskManager, CaptureSession captureSession) { in TaskChainedCompressImageToJpeg() argument
42 super(image, executor, imageTaskManager, ProcessingPriority.SLOW, captureSession); in TaskChainedCompressImageToJpeg()
H A DTaskImageContainer.java183 ProcessingPriority preferredLane, CaptureSession captureSession) { in TaskImageContainer() argument
189 mSession = captureSession; in TaskImageContainer()
H A DImageBackend.java605 for (CaptureSession captureSession : sessionSet) { in initializeTaskDone()
607 protocol.setCount(sessionTaskCount.get(captureSession)); in initializeTaskDone()
609 shadowTask = new ImageShadowTask(protocol, captureSession, in initializeTaskDone()
611 mShadowTaskMap.put(captureSession, shadowTask); in initializeTaskDone()
H A DTaskJpegEncode.java66 TaskImageContainer.ProcessingPriority preferredLane, CaptureSession captureSession) { in TaskJpegEncode() argument
67 super(image, executor, imageTaskManager, preferredLane, captureSession); in TaskJpegEncode()
H A DImageConsumer.java86 Set<ImageTaskFlags> processingFlags, CaptureSession captureSession, in receiveImage() argument
H A DTaskCompressImageToJpeg.java76 CaptureSession captureSession, in TaskCompressImageToJpeg() argument
78 super(image, executor, imageTaskManager, ProcessingPriority.SLOW, captureSession); in TaskCompressImageToJpeg()
/aosp12/frameworks/base/media/java/android/media/soundtrigger/
H A DSoundTriggerDetector.java161 AudioFormat audioFormat, int captureSession, byte[] data) { in EventPayload() argument
164 mCaptureSession = captureSession; in EventPayload()
373 event.captureFormat, event.captureSession, event.data)) in onGenericSoundTriggerDetected()
/aosp12/frameworks/base/media/java/android/media/musicrecognition/
H A DRecognitionRequest.java111 public Builder setCaptureSession(int captureSession) { in setCaptureSession() argument
112 mCaptureSession = captureSession; in setCaptureSession()
/aosp12/frameworks/base/media/aidl/android/media/soundtrigger_middleware/
H A DRecognitionEvent.aidl34 int captureSession;
/aosp12/packages/apps/Camera2/src_pd/com/android/camera/burst/
H A DBurstControllerImpl.java47 CaptureSession captureSession) { in startBurst() argument
/aosp12/frameworks/base/services/core/java/com/android/server/soundtrigger_middleware/
H A DSoundTriggerModule.java619 aidlEvent.captureSession = mSession.mSessionHandle; in recognitionCallback()
640 aidlEvent.common.captureSession = mSession.mSessionHandle; in phraseRecognitionCallback()
/aosp12/hardware/interfaces/soundtrigger/2.0/
H A DISoundTriggerHwCallback.hal46 int32_t captureSession;

12