HomeSort by relevance Sort by last modified time
    Searched refs:CONTROL_AF_STATE (Results 1 - 25 of 29) sorted by null

1 2

  /packages/apps/Camera2/src/com/android/camera/one/v2/initialization/
MetadataCallback.java 62 Integer focusState = totalCaptureResult.get(CaptureResult.CONTROL_AF_STATE);
70 Integer focusState = totalCaptureResult.get(CaptureResult.CONTROL_AF_STATE);
  /packages/apps/Camera2/src/com/android/camera/one/v2/photo/zsl/
AcceptableZslImageFilter.java 85 Integer afState = metadata.get(CaptureResult.CONTROL_AF_STATE);
  /packages/apps/Camera2/src/com/android/camera/one/v2/autofocus/
AFTriggerResult.java 40 * {@link android.hardware.camera2.CaptureResult#CONTROL_AF_STATE} which relates
50 * See the android documentation for {@link CaptureResult#CONTROL_AF_STATE} for
72 Integer afState = result.get(CaptureResult.CONTROL_AF_STATE);
  /frameworks/ex/camera2/public/src/com/android/ex/camera2/pos/
AutoFocusStateMachine.java 113 Key<Integer> keyAfState = CaptureResult.CONTROL_AF_STATE;
127 Integer afState = result.get(CaptureResult.CONTROL_AF_STATE);
  /packages/apps/Camera2/src/com/android/camera/one/v2/
AutoFocusHelper.java 75 * Complain if CONTROL_AF_STATE is not present in result.
79 boolean missing = result.get(CaptureResult.CONTROL_AF_STATE) == null;
81 // throw new IllegalStateException("CaptureResult missing CONTROL_AF_STATE.");
82 Log.e(TAG, "\n!!!! TotalCaptureResult missing CONTROL_AF_STATE. !!!!\n ");
109 controlAFStateToString(result.get(CaptureResult.CONTROL_AF_STATE)),
221 * Utility function: converts CaptureResult.CONTROL_AF_STATE to String.
OneCameraImpl.java 196 /** Last frame for which CONTROL_AF_STATE was received. */
229 // is missing CONTROL_AF_STATE. This should not happen.
230 if (result.get(CaptureResult.CONTROL_AF_STATE) == null) {
667 result.get(CaptureResult.CONTROL_AF_STATE) == null) {
674 stateFromCamera2State(result.get(CaptureResult.CONTROL_AF_STATE));
    [all...]
OneCameraZslImpl.java 332 mCaptureManager.addMetadataChangeListener(CaptureResult.CONTROL_AF_STATE,
341 result.get(CaptureResult.CONTROL_AF_STATE)),
437 Integer afState = captureResult.get(CaptureResult.CONTROL_AF_STATE);
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/legacy/
LegacyFocusStateMapper.java 296 result.set(CaptureResult.CONTROL_AF_STATE, newAfState);
LegacyMetadataMapper.java     [all...]
  /cts/tests/camera/src/android/hardware/camera2/cts/
RobustnessTest.java 498 int afState = triggerResult.get(CaptureResult.CONTROL_AF_STATE);
509 afState = focusResult.get(CaptureResult.CONTROL_AF_STATE);
640 int afState = triggerResult.get(CaptureResult.CONTROL_AF_STATE);
655 afState = sequenceResult.get(CaptureResult.CONTROL_AF_STATE);
    [all...]