Searched refs:afState (Results 1 – 3 of 3) sorted by relevance
222 val afState = result.get(CaptureResult.CONTROL_AF_STATE) in capturePicture() constant223 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()
296 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) {
445 Integer afState = result.get(CaptureResult.CONTROL_AF_STATE);446 if (afState == null) {452 (afState == CaptureResult.CONTROL_AF_STATE_FOCUSED_LOCKED ||453 … afState == CaptureResult.CONTROL_AF_STATE_NOT_FOCUSED_LOCKED);