Home
last modified time | relevance | path

Searched refs:afState (Results 1 – 3 of 3) sorted by relevance

/developers/samples/android/media/Camera2Basic/kotlinApp/Application/src/main/java/com/example/android/camera2basic/
DCamera2BasicFragment.kt222 val afState = result.get(CaptureResult.CONTROL_AF_STATE) in capturePicture() constant
223 if (afState == null) { in capturePicture()
225 } else if (afState == CaptureResult.CONTROL_AF_STATE_FOCUSED_LOCKED in capturePicture()
226 || afState == CaptureResult.CONTROL_AF_STATE_NOT_FOCUSED_LOCKED) { in capturePicture()
/developers/samples/android/media/Camera2Basic/Application/src/main/java/com/example/android/camera2basic/
DCamera2BasicFragment.java296 Integer afState = result.get(CaptureResult.CONTROL_AF_STATE);
297 if (afState == null) {
299 } else if (CaptureResult.CONTROL_AF_STATE_FOCUSED_LOCKED == afState ||
300 CaptureResult.CONTROL_AF_STATE_NOT_FOCUSED_LOCKED == afState) {
/developers/samples/android/media/Camera2Raw/Application/src/main/java/com/example/android/camera2raw/
DCamera2RawFragment.java445 Integer afState = result.get(CaptureResult.CONTROL_AF_STATE);
446 if (afState == null) {
452 (afState == CaptureResult.CONTROL_AF_STATE_FOCUSED_LOCKED ||
453afState == CaptureResult.CONTROL_AF_STATE_NOT_FOCUSED_LOCKED);