HomeSort by relevance Sort by last modified time
    Searched defs:CameraDevice (Results 1 - 3 of 3) sorted by null

  /external/qemu/android/camera/
camera-common.h 175 typedef struct CameraDevice {
178 } CameraDevice;
  /frameworks/base/core/java/android/hardware/camera2/
CameraDevice.java 25 * <p>The CameraDevice class is an interface to a single camera connected to an
47 public interface CameraDevice extends 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 camera
    [all...]
  /frameworks/base/core/java/android/hardware/camera2/impl/
CameraDevice.java 42 * HAL2.1+ implementation of CameraDevice. Use CameraManager#open to instantiate
44 public class CameraDevice implements 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.this.isClosed())
    [all...]

Completed in 62 milliseconds