Home
last modified time | relevance | path

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

/aosp12/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraAdvancedExtensionSessionImpl.java93 private ISessionProcessorImpl mSessionProcessor = null; field in CameraAdvancedExtensionSessionImpl
201 mSessionProcessor = mAdvancedExtender.getSessionProcessor(); in initialize()
358 seqId = mSessionProcessor.startRepeating(new RequestCallbackHandler(request, in setRepeatingRequest()
402 seqId = mSessionProcessor.startCapture(new RequestCallbackHandler(request, in capture()
423 mSessionProcessor.stopRepeating(); in stopRepeating()
438 mSessionProcessor.stopRepeating(); in close()
439 mSessionProcessor.onCaptureSessionEnd(); in close()
455 if (mSessionProcessor != null) { in release()
457 mSessionProcessor.deInitSession(); in release()
462 mSessionProcessor = null; in release()
[all …]
/aosp12/frameworks/base/packages/services/CameraExtensionsProxy/src/com/android/cameraextensions/
H A DCameraExtensionsProxyService.java1035 private final SessionProcessorImpl mSessionProcessor; field in CameraExtensionsProxyService.SessionProcessorImplStub
1039 mSessionProcessor = sessionProcessor; in SessionProcessorImplStub()
1050 Camera2SessionConfigImpl sessionConfig = mSessionProcessor.initSession(cameraId, in initSession()
1107 mSessionProcessor.deInitSession(); in deInitSession()
1112 mSessionProcessor.onCaptureSessionStart( in onCaptureSessionStart()
1118 mSessionProcessor.onCaptureSessionEnd(); in onCaptureSessionEnd()
1123 return mSessionProcessor.startRepeating(new CaptureCallbackStub(callback)); in startRepeating()
1128 mSessionProcessor.stopRepeating(); in stopRepeating()
1136 mSessionProcessor.setParameters(paramMap); in startCapture()
1137 return mSessionProcessor.startCapture(new CaptureCallbackStub(callback)); in startCapture()