Searched defs:totalCaptureResult (Results 1 - 4 of 4) sorted by relevance

/packages/apps/Camera2/src/com/android/camera/one/v2/camera2proxy/
H A DAndroidTotalCaptureResultProxy.java52 public AndroidTotalCaptureResultProxy(TotalCaptureResult totalCaptureResult) { argument
53 super(totalCaptureResult);
54 mTotalCaptureResult = totalCaptureResult;
/packages/apps/Camera2/src/com/android/camera/one/v2/common/
H A DMetadataResponseListener.java50 public void onCompleted(TotalCaptureResult totalCaptureResult) { argument
51 V newValue = totalCaptureResult.get(mKey);
/packages/apps/Camera2/src/com/android/camera/one/v2/initialization/
H A DMetadataCallback.java48 public void update(@Nonnull TotalCaptureResultProxy totalCaptureResult) { argument
49 updateFocusMode(totalCaptureResult);
50 updateFocusState(totalCaptureResult);
51 updateOneCameraFocusState(totalCaptureResult);
54 private void updateFocusMode(TotalCaptureResultProxy totalCaptureResult) { argument
55 Integer focusMode = totalCaptureResult.get(CaptureResult.CONTROL_AF_MODE);
61 private void updateFocusState(TotalCaptureResultProxy totalCaptureResult) { argument
62 Integer focusState = totalCaptureResult.get(CaptureResult.CONTROL_AF_STATE);
68 private void updateOneCameraFocusState(TotalCaptureResultProxy totalCaptureResult) { argument
69 Float focusDistance = totalCaptureResult
[all...]
/packages/apps/Camera2/src/com/android/camera/one/v2/
H A DOneCameraImpl.java94 TotalCaptureResult totalCaptureResult; field in class:OneCameraImpl.InFlightCapture
110 totalCaptureResult = result;
119 return image != null && totalCaptureResult != null;
774 writeDngBytesAndClose(capture.image, capture.totalCaptureResult,
781 capture.totalCaptureResult);

Completed in 108 milliseconds