Searched defs:CameraDevice (Results 1 - 2 of 2) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/
H A DCameraDevice.java25 * <p>The CameraDevice class is an interface to a single camera connected to an
47 public interface CameraDevice extends AutoCloseable { interface in inherits:AutoCloseable
256 * request; one of the CameraDevice.TEMPLATE_ values.
276 * <p>Submit a request for an image to be captured by this CameraDevice.</p>
365 * Request endlessly repeating capture of images by this CameraDevice.
367 * <p>With this method, the CameraDevice will continually capture images
424 * CameraDevice.</p>
426 * <p>With this method, the CameraDevice will continually capture images,
622 * @param camera the CameraDevice sending the callback
628 public void onCaptureStarted(CameraDevice camer
[all...]
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraDevice.java42 * HAL2.1+ implementation of CameraDevice. Use CameraManager#open to instantiate
44 public class CameraDevice implements android.hardware.camera2.CameraDevice { class in inherits:android.hardware.camera2.CameraDevice
77 if (!CameraDevice.this.isClosed()) {
78 mDeviceListener.onOpened(CameraDevice.this);
85 if (!CameraDevice.this.isClosed()) {
86 mDeviceListener.onUnconfigured(CameraDevice.this);
93 if (!CameraDevice.this.isClosed()) {
94 mDeviceListener.onActive(CameraDevice.this);
101 if (!CameraDevice
131 public CameraDevice(String cameraId, StateListener listener, Handler handler) { method in class:CameraDevice
[all...]

Completed in 61 milliseconds