Searched refs:onClosed (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/
H A DCameraDevice.java396 * fully shut down, the {@link StateCallback#onClosed} callback will be called, and the camera
399 * <p>Immediately after this call, besides the final {@link StateCallback#onClosed} calls, no
516 public void onClosed(CameraDevice camera) { method in class:CameraDevice.StateCallback
H A DCameraCaptureSession.java46 * associated {@link StateCallback#onClosed onClosed} callback will be invoked. All
304 * if the session has not been closed. Otherwise, the {@link StateCallback#onClosed}
335 * {@link StateCallback#onClosed} callback. Using {@link CameraDevice#createCaptureSession}
343 * {@link StateCallback#onClosed} will be called.</p>
436 public void onClosed(CameraCaptureSession session) { method in class:CameraCaptureSession.StateCallback
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCallbackProxies.java79 public void onClosed(CameraDevice camera) { method in class:CallbackProxies.DeviceStateCallbackProxy
80 mProxy.invoke("onClosed", camera);
175 public void onClosed(CameraCaptureSession session) { method in class:CallbackProxies.SessionStateCallbackProxy
176 mProxy.invoke("onClosed", session);
H A DCameraCaptureSessionImpl.java325 * camera. Once that's done, fire #onClosed.
333 // TODO: Fire onClosed anytime we get the device onClosed or the ISE?
334 // or just suppress the ISE only and rely onClosed.
338 mStateCallback.onClosed(this);
344 // TODO: call onError instead of onClosed if this happens
347 // If no sequences are pending, fire #onClosed immediately
591 * close the camera further by unconfiguring and then firing {@code onClosed}.</p>
645 * It's now safe to unconfigure the outputs and after it's done invoke #onClosed.
655 mStateCallback.onClosed(CameraCaptureSessionImp
[all...]
H A DCameraDeviceImpl.java173 throw new AssertionError("Don't post #onClosed more than once");
180 sessionCallback.onClosed(CameraDeviceImpl.this);
182 mDeviceCallback.onClosed(CameraDeviceImpl.this);
766 // Only want to fire the onClosed callback once;
/frameworks/ex/camera2/public/src/com/android/ex/camera2/blocking/
H A DBlockingCameraManager.java278 public void onClosed(CameraDevice camera) { method in class:BlockingCameraManager.OpenListener
279 if (mProxy != null) mProxy.onClosed(camera);
H A DBlockingSessionCallback.java156 public void onClosed(CameraCaptureSession session) { method in class:BlockingSessionCallback
158 if (mProxy != null) mProxy.onClosed(session);
H A DBlockingStateCallback.java129 public void onClosed(CameraDevice camera) { method in class:BlockingStateCallback
130 if (mProxy != null) mProxy.onClosed(camera);
/frameworks/base/tests/Camera2Tests/CameraToo/src/com/example/android/camera2/cameratoo/
H A DCameraTooActivity.java373 public void onClosed(CameraCaptureSession session) {

Completed in 135 milliseconds