HomeSort by relevance Sort by last modified time
    Searched refs:ACameraDevice (Results 1 - 19 of 19) sorted by null

  /development/ndk/platforms/android-24/include/camera/
NdkCameraDevice.h 49 * ACameraDevice is opaque type that provides access to a camera device.
53 typedef struct ACameraDevice ACameraDevice;
96 * @param device The {@link ACameraDevice} that is being disconnected.
98 typedef void (*ACameraDevice_StateCallback)(void* context, ACameraDevice* device);
105 * @param device The {@link ACameraDevice} that is being disconnected.
115 typedef void (*ACameraDevice_ErrorStateCallback)(void* context, ACameraDevice* device, int error);
124 * <p>Any attempt to call API methods on this ACameraDevice will return
141 * Any attempt to call API methods on this ACameraDevice in the future will return
155 * Close the connection and free this ACameraDevice synchronously. Access to the ACameraDevic
    [all...]
NdkCameraCaptureSession.h 120 * {@link ACameraDevice}.</p>
138 * incremented every time a new group of requests is submitted to the ACameraDevice.</p>
414 struct ACameraDevice;
415 typedef struct ACameraDevice ACameraDevice;
418 * Get the ACameraDevice pointer associated with this capture session in the device argument
422 * @param device the {@link ACameraDevice} associated with session. Will be set to NULL
425 * {@link ACAMERA_OK} if the method call succeeds. The {@link ACameraDevice}
433 ACameraCaptureSession* session, /*out*/ACameraDevice** device);
NdkCameraManager.h 58 * detecting, characterizing, and connecting to {@link ACameraDevice}s.</p>
235 * <p>Once the camera is successfully opened,the ACameraDevice can then be set up
241 * ACameraDevice in the disconnected state will be called.</p>
245 * ACameraDevice in the error state will be called.</p>
250 * @param device the opened {@link ACameraDevice} will be filled here if the method call succeeds.
272 /*out*/ACameraDevice** device);
  /frameworks/av/camera/ndk/include/camera/
NdkCameraDevice.h 50 * ACameraDevice is opaque type that provides access to a camera device.
54 typedef struct ACameraDevice ACameraDevice;
97 * @param device The {@link ACameraDevice} that is being disconnected.
99 typedef void (*ACameraDevice_StateCallback)(void* context, ACameraDevice* device);
106 * @param device The {@link ACameraDevice} that is being disconnected.
116 typedef void (*ACameraDevice_ErrorStateCallback)(void* context, ACameraDevice* device, int error);
125 * <p>Any attempt to call API methods on this ACameraDevice will return
142 * Any attempt to call API methods on this ACameraDevice in the future will return
156 * Close the connection and free this ACameraDevice synchronously. Access to the ACameraDevic
    [all...]
NdkCameraCaptureSession.h 122 * {@link ACameraDevice}.</p>
140 * incremented every time a new group of requests is submitted to the ACameraDevice.</p>
416 struct ACameraDevice;
417 typedef struct ACameraDevice ACameraDevice;
420 * Get the ACameraDevice pointer associated with this capture session in the device argument
424 * @param device the {@link ACameraDevice} associated with session. Will be set to NULL
427 * {@link ACAMERA_OK} if the method call succeeds. The {@link ACameraDevice}
435 ACameraCaptureSession* session, /*out*/ACameraDevice** device);
NdkCameraManager.h 60 * detecting, characterizing, and connecting to {@link ACameraDevice}s.</p>
237 * <p>Once the camera is successfully opened,the ACameraDevice can then be set up
243 * ACameraDevice in the disconnected state will be called.</p>
247 * ACameraDevice in the error state will be called.</p>
252 * @param device the opened {@link ACameraDevice} will be filled here if the method call succeeds.
274 /*out*/ACameraDevice** device);
  /frameworks/av/camera/ndk/
NdkCameraDevice.cpp 30 camera_status_t ACameraDevice_close(ACameraDevice* device) {
41 const char* ACameraDevice_getId(const ACameraDevice* device) {
52 const ACameraDevice* device,
150 ACameraDevice* device,
Android.mk 31 impl/ACameraDevice.cpp \
NdkCameraCaptureSession.cpp 44 ACameraCaptureSession* session, ACameraDevice **device) {
NdkCameraManager.cpp 117 /*out*/ACameraDevice** device) {
  /frameworks/av/camera/ndk/impl/
ACameraDevice.h 51 ACameraDevice* wrapper);
90 inline ACameraDevice* getWrapper() const { return mWrapper; };
152 ACameraDevice* mWrapper;
275 * ACameraDevice opaque struct definition
278 struct ACameraDevice {
279 ACameraDevice(const char* id, ACameraDevice_StateCallbacks* cb,
283 ~ACameraDevice() {};
ACameraCaptureSession.h 22 #include "ACameraDevice.h"
92 ACameraDevice* getDevice();
ACameraCaptureSession.cpp 151 ACameraDevice*
ACameraManager.cpp 23 #include "ACameraDevice.h"
436 /*out*/ACameraDevice** outDevice) {
448 ACameraDevice* device = new ACameraDevice(cameraId, callback, std::move(chars));
ACameraManager.h 170 /*out*/ACameraDevice** device);
ACameraDevice.cpp 18 #define LOG_TAG "ACameraDevice"
25 #include "ACameraDevice.h"
54 ACameraDevice* wrapper) :
786 ACameraDevice* dev;
806 ACameraDevice* dev;
    [all...]
  /cts/tests/tests/graphics/jni/
android_graphics_cts_CameraGpuCtsActivity.cpp 247 static void onDeviceDisconnected(void* /*obj*/, ACameraDevice* /*device*/) {}
249 static void onDeviceError(void* /*obj*/, ACameraDevice* /*device*/, int /*errorCode*/) {}
269 ACameraDevice* mDevice{nullptr};
  /cts/tests/tests/media/libimagereaderjni/
AImageReaderCts.cpp 228 static void onDeviceDisconnected(void* /*obj*/, ACameraDevice* /*device*/) {}
230 static void onDeviceError(void* /*obj*/, ACameraDevice* /*device*/, int /*errorCode*/) {}
251 ACameraDevice* mDevice = nullptr;
  /cts/tests/camera/libctscamera2jni/
native-camera-jni.cpp 107 static void onDisconnected(void* obj, ACameraDevice* device) {
118 static void onError(void* obj, ACameraDevice* device, int errorCode) {
159 ACameraDevice* device = nullptr;
179 ACameraDevice* device = nullptr;
832 ACameraDevice* mDevice = nullptr;
    [all...]

Completed in 180 milliseconds