Home
last modified time | relevance | path

Searched refs:totalCaptureResult (Results 1 – 8 of 8) sorted by relevance

/aosp12/packages/apps/Camera2/src/com/android/camera/one/v2/initialization/
H A DMetadataCallback.java48 public void update(@Nonnull TotalCaptureResultProxy totalCaptureResult) { in update() argument
49 updateFocusMode(totalCaptureResult); in update()
50 updateFocusState(totalCaptureResult); in update()
51 updateOneCameraFocusState(totalCaptureResult); in update()
54 private void updateFocusMode(TotalCaptureResultProxy totalCaptureResult) { in updateFocusMode() argument
55 Integer focusMode = totalCaptureResult.get(CaptureResult.CONTROL_AF_MODE); in updateFocusMode()
61 private void updateFocusState(TotalCaptureResultProxy totalCaptureResult) { in updateFocusState() argument
62 Integer focusState = totalCaptureResult.get(CaptureResult.CONTROL_AF_STATE); in updateFocusState()
68 private void updateOneCameraFocusState(TotalCaptureResultProxy totalCaptureResult) { in updateOneCameraFocusState() argument
69 Float focusDistance = totalCaptureResult.get(CaptureResult.LENS_FOCUS_DISTANCE); in updateOneCameraFocusState()
[all …]
/aosp12/packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/
H A DAndroidTotalCaptureResultProxy.java52 public AndroidTotalCaptureResultProxy(TotalCaptureResult totalCaptureResult) { in AndroidTotalCaptureResultProxy() argument
53 super(totalCaptureResult); in AndroidTotalCaptureResultProxy()
54 mTotalCaptureResult = totalCaptureResult; in AndroidTotalCaptureResultProxy()
/aosp12/packages/apps/Camera2/src/com/android/camera/one/v2/common/
H A DMetadataResponseListener.java50 public void onCompleted(TotalCaptureResult totalCaptureResult) { in onCompleted() argument
51 V newValue = totalCaptureResult.get(mKey); in onCompleted()
/aosp12/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraExtensionForwardProcessor.java117 public void process(ParcelImage image, TotalCaptureResult totalCaptureResult) in process() argument
121 mProcessor.process(image, totalCaptureResult.getNativeMetadata(), in process()
122 totalCaptureResult.getSequenceId()); in process()
/aosp12/frameworks/base/packages/services/CameraExtensionsProxy/src/com/android/cameraextensions/
H A DCameraExtensionsProxyService.java862 public void onCaptureCompleted(int requestId, ParcelTotalCaptureResult totalCaptureResult) { in onCaptureCompleted() argument
866 if ((totalCaptureResult.physicalResult != null) && in onCaptureCompleted()
867 (!totalCaptureResult.physicalResult.isEmpty())) { in onCaptureCompleted()
868 int count = totalCaptureResult.physicalResult.size(); in onCaptureCompleted()
870 physicalResults = totalCaptureResult.physicalResult.toArray( in onCaptureCompleted()
874 totalCaptureResult.partials.size()); in onCaptureCompleted()
875 for (ParcelCaptureResult parcelResult : totalCaptureResult.partials) { in onCaptureCompleted()
881 totalCaptureResult.logicalCameraId, totalCaptureResult.results, in onCaptureCompleted()
882 totalCaptureResult.parent, totalCaptureResult.sequenceId, in onCaptureCompleted()
883 totalCaptureResult.frameNumber, partials, totalCaptureResult.sessionId, in onCaptureCompleted()
/aosp12/frameworks/base/core/java/android/hardware/camera2/extension/
H A DIRequestCallback.aidl27 void onCaptureCompleted(int requestId, in ParcelTotalCaptureResult totalCaptureResult); in onCaptureCompleted() argument
/aosp12/packages/apps/Camera2/src/com/android/camera/one/v2/
H A DOneCameraImpl.java95 TotalCaptureResult totalCaptureResult; field in OneCameraImpl.InFlightCapture
111 totalCaptureResult = result; in setCaptureResult()
120 return image != null && totalCaptureResult != null; in isCaptureComplete()
776 writeDngBytesAndClose(capture.image, capture.totalCaptureResult, in onCaptureCompleted()
783 capture.totalCaptureResult); in onCaptureCompleted()
/aosp12/frameworks/ex/camera2/extensions/stub/src/main/java/androidx/camera/extensions/impl/advanced/
H A DRequestProcessorImpl.java106 TotalCaptureResult totalCaptureResult); in onCaptureCompleted() argument