Lines Matching defs:camera

71      * Number of camera devices.  The length of {@code mCameraDevices} does not reveal this
77 * Transformation between integral camera indices and the {@link java.lang.String} indices used
104 * Updates the camera device index assignments stored in {@link mCameraDevices}, without
113 // Invalidate the indices assigned to any camera devices that are no longer present
121 // Assign fresh indices to any new camera devices
132 Log.e(TAG, "Could not get device listing from camera subsystem", ex);
242 Log.i(TAG, String.format("Opening camera index %d (id %s) with camera2 API",
441 // Send a one-time capture to trigger the camera driver to lock focus.
470 // Send a one-time capture to trigger the camera driver to resume scanning.
621 // Set a one-time capture to trigger the camera driver's autoexposure:
675 Log.e(TAG, "Unable to query camera device to build settings representation");
751 Log.e(TAG, "Failed to create camera capture session", ex);
760 Log.e(TAG, "Failed to close existing camera capture session", ex);
775 // This callback monitors our connection to and disconnection from camera devices.
779 public void onOpened(CameraDevice camera) {
780 mCamera = camera;
805 public void onDisconnected(CameraDevice camera) {
810 public void onError(CameraDevice camera, int error) {
819 // This callback monitors our camera session (i.e. our transition into and out of preview).
831 Log.e(TAG, "Failed to configure the camera for capture");
987 CameraDevice camera,
992 mCamera = camera;
1073 final CameraProxy camera) {
1077 cb.onAutoFocus(focused, camera);
1107 final CameraProxy camera) {
1111 cb.onAutoFocusMoving(moving, camera);
1267 /** No camera device is opened. */
1269 /** A camera is opened, but no settings have been provided. */
1271 /** The open camera has been configured by providing it with settings. */
1317 Log.w(TAG, "Couldn't get characteristics of camera '" + id + "'", ex);
1392 // calculated, since that is not done by the new camera API.