/packages/apps/Camera2/src/com/android/camera/processing/imagebackend/ |
D | ImageShadowTask.java | 50 private final CaptureSession mCaptureSession; field in ImageShadowTask 75 mCaptureSession = captureSession; in ImageShadowTask() 104 ProcessingResult finalResult = new ProcessingResult(true, mCaptureSession); in process() 136 return mCaptureSession; in getSession()
|
/packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/camera2/ |
D | CameraSystemActivity.java | 54 private CameraCaptureSession mCaptureSession; field in CameraSystemActivity 176 mCaptureSession = session; in onConfigured() 178 mCaptureSession.setRepeatingRequest(mCaptureRequestBuilder.build(), null, mHandler); in onConfigured() 194 if (mCaptureSession != null) { in onDestroy() 195 mCaptureSession.stopRepeating(); in onDestroy() 196 mCaptureSession.close(); in onDestroy()
|
D | CameraPreviewManager.java | 69 private CameraCaptureSession mCaptureSession; field in CameraPreviewManager 164 if (mCaptureSession != null) { in stopSession() 165 mCaptureSession.stopRepeating(); in stopSession() 166 mCaptureSession.close(); in stopSession() 167 mCaptureSession = null; in stopSession() 321 mCaptureSession = session; in onConfigured() 324 mCaptureSession.setRepeatingRequest( in onConfigured()
|
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/core/video/android/ |
D | ImsMediaCamera.cpp | 90 mCaptureSession(nullptr), in ImsMediaCamera() 364 mSessionOutputContainer, GetSessionListener(), &mCaptureSession); in CreateSession() 369 mCaptureSession = nullptr; in CreateSession() 373 IMLOGD1("[CreateSession] create capture session[%p]", mCaptureSession); in CreateSession() 389 if (mCaptureSession != nullptr) in DeleteSession() 393 ACameraCaptureSession_close(mCaptureSession); in DeleteSession() 395 mCaptureSession = nullptr; in DeleteSession() 458 mCaptureSession, nullptr, 1, &mCaptureRequest.request, nullptr); in StartSession() 477 camera_status_t status = ACameraCaptureSession_stopRepeating(mCaptureSession); in StopSession() 653 if (mCaptureSession == nullptr) in OnSessionState() [all …]
|
/packages/apps/Settings/src/com/android/settings/biometrics/face/ |
D | FaceEnrollPreviewFragment.java | 64 private CameraCaptureSession mCaptureSession; field in FaceEnrollPreviewFragment 144 mCaptureSession = cameraCaptureSession; 152 mCaptureSession.setRepeatingRequest(mPreviewRequest, 336 if (mCaptureSession != null) { in closeCamera() 337 mCaptureSession.close(); in closeCamera() 338 mCaptureSession = null; in closeCamera()
|
/packages/apps/Camera2/src/com/android/camera/one/v2/core/ |
D | FrameServerImpl.java | 55 mCaptureSession.submitRequest(burstRequests, type); in submitRequest() 76 private final FrameServer.Session mCaptureSession; field in FrameServerImpl 84 mCaptureSession = captureSession; in FrameServerImpl()
|
D | TagDispatchCaptureSession.java | 100 private final CameraCaptureSessionProxy mCaptureSession; field in TagDispatchCaptureSession 106 mCaptureSession = captureSession; in TagDispatchCaptureSession() 152 mCaptureSession.setRepeatingBurst(captureRequests, new in submitRequest() 155 mCaptureSession.captureBurst(captureRequests, new in submitRequest()
|
/packages/apps/Camera2/src/com/android/camera/one/v2/errorhandling/ |
D | FastCameraReset.java | 40 private final CameraCaptureSessionProxy mCaptureSession; field in FastCameraReset 49 mCaptureSession = captureSession; in FastCameraReset() 64 mCaptureSession.abortCaptures(); in run()
|
/packages/apps/Camera2/src/com/android/camera/one/v2/ |
D | OneCameraImpl.java | 278 private CameraCaptureSession mCaptureSession; field in OneCameraImpl 417 mCaptureSession.capture(request, mCaptureCallback, mCameraHandler); in takePictureNow() 442 if (mCaptureSession != null) { in close() 443 mCaptureSession.abortCaptures(); in close() 545 if (mCaptureSession != null) { in setup() 546 mCaptureSession.abortCaptures(); in setup() 547 mCaptureSession = null; in setup() 562 mCaptureSession = session; in setup() 618 mCaptureSession.setRepeatingRequest(builder.build(), mCaptureCallback, in repeatingPreview() 642 mCaptureSession.capture(builder.build(), mCaptureCallback, mCameraHandler); in sendAutoFocusTriggerCaptureRequest()
|
D | OneCameraZslImpl.java | 168 private CameraCaptureSession mCaptureSession; field in OneCameraZslImpl 584 mCaptureSession.stopRepeating(); in close() 681 if (mCaptureSession != null) { in setup() 682 mCaptureSession.abortCaptures(); in setup() 683 mCaptureSession = null; in setup() 697 mCaptureSession = session; in setup() 781 mCaptureSession.setRepeatingRequest(builder.build(), mCaptureManager, mCameraHandler); in sendRepeatingCaptureRequest() 828 mCaptureSession.capture(builder.build(), mCaptureManager, mCameraHandler); in sendSingleRequest() 857 mCaptureSession.setRepeatingRequest(builder.build(), mCaptureManager, mCameraHandler); in sendRepeatingBurstCaptureRequest() 889 mCaptureSession.capture(builder.build(), mCaptureManager, mCameraHandler); in sendAutoExposureTriggerRequest() [all …]
|
/packages/services/DeviceAsWebcam/src/com/android/DeviceAsWebcam/ |
D | CameraController.java | 159 private CameraCaptureSession mCaptureSession; field in CameraController 238 mCaptureSession = cameraCaptureSession; 240 mCaptureSession.setSingleRepeatingRequest( 1294 if (mCameraDevice == null || mCaptureSession == null) { in setZoomRatio() 1300 mCaptureSession.setSingleRepeatingRequest(mPreviewRequestBuilder.build(), in setZoomRatio() 1372 mCaptureSession.close(); in switchCamera() 1491 if (mCameraDevice == null || mCaptureSession == null) { in tapToFocus() 1502 mCaptureSession.setSingleRepeatingRequest(mPreviewRequestBuilder.build(), in tapToFocus() 1527 mCaptureSession.captureSingleRequest(builder.build(), in tapToFocus() 1582 if (mCameraDevice == null || mCaptureSession == null) { in resetToAutoFocus() [all …]
|
/packages/modules/ImsMedia/service/src/com/android/telephony/imsmedia/lib/libimsmedia/core/include/video/android/ |
D | ImsMediaCamera.h | 281 ACameraCaptureSession* mCaptureSession; variable
|