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

  /frameworks/av/camera/ndk/include/camera/
NdkCameraCaptureSession.h 50 * ACameraCaptureSession is an opaque type that manages frame captures of a camera device.
54 typedef struct ACameraCaptureSession ACameraCaptureSession;
63 typedef void (*ACameraCaptureSession_stateCallback)(void* context, ACameraCaptureSession *session);
77 * <p>Once this callback is called, all access to this ACameraCaptureSession object will cause
170 void* context, ACameraCaptureSession* session,
187 void* context, ACameraCaptureSession* session,
205 void* context, ACameraCaptureSession* session,
218 void* context, ACameraCaptureSession* session,
230 void* context, ACameraCaptureSession* session
    [all...]
NdkCameraDevice.h 164 * <p>After this call, all calls to the active ACameraCaptureSession associated to this
397 * or only some of the outputs. Once the ACameraCaptureSession is created, requests can be
479 * <p>If a prior ACameraCaptureSession already exists when this method is called, the previous
    [all...]
  /frameworks/av/camera/ndk/impl/
ACameraCaptureSession.cpp 18 #define LOG_TAG "ACameraCaptureSession"
20 #include "ACameraCaptureSession.h"
24 ACameraCaptureSession::~ACameraCaptureSession() {
25 ALOGV("~ACameraCaptureSession: %p notify device end of life", this);
37 ALOGV("~ACameraCaptureSession: %p is deleted", this);
41 ACameraCaptureSession::closeByApp() {
75 ACameraCaptureSession::stopRepeating() {
93 ACameraCaptureSession::abortCaptures() {
111 ACameraCaptureSession::setRepeatingRequest
    [all...]
ACameraCaptureSession.h 54 * ACameraCaptureSession opaque struct definition
57 struct ACameraCaptureSession : public RefBase {
59 ACameraCaptureSession(
69 ~ACameraCaptureSession();
ACameraDevice.h 65 /*out*/ACameraCaptureSession** session);
96 friend ACameraCaptureSession;
102 void disconnectLocked(sp<ACameraCaptureSession>& session); // disconnect from camera service
106 camera_status_t flushLocked(ACameraCaptureSession*);
111 camera_status_t captureLocked(sp<ACameraCaptureSession> session,
116 camera_status_t setRepeatingRequestsLocked(sp<ACameraCaptureSession> session,
122 sp<ACameraCaptureSession> session,
142 void notifySessionEndOfLifeLocked(ACameraCaptureSession* session);
178 sp<ACameraCaptureSession> mBusySession;
199 kWhatCleanUpSessions // Cleanup cached sp<ACameraCaptureSession>
    [all...]
ACameraDevice.cpp 28 #include "ACameraCaptureSession.h"
102 sp<ACameraCaptureSession> session = mCurrentSession.promote();
162 /*out*/ACameraCaptureSession** session) {
163 sp<ACameraCaptureSession> currentSession = mCurrentSession.promote();
182 ACameraCaptureSession* newSession = new ACameraCaptureSession(
195 sp<ACameraCaptureSession> session,
205 sp<ACameraCaptureSession> session,
215 sp<ACameraCaptureSession> session,
445 CameraDevice::notifySessionEndOfLifeLocked(ACameraCaptureSession* session)
    [all...]
  /cts/tests/tests/graphics/jni/
CameraTestHelpers.h 51 ACameraCaptureSession * /*session*/) {}
53 ACameraCaptureSession * /*session*/) {}
55 ACameraCaptureSession * /*session*/) {}
74 ACameraCaptureSession *mSession{nullptr};
  /frameworks/av/camera/ndk/
NdkCameraCaptureSession.cpp 29 #include "impl/ACameraCaptureSession.h"
34 void ACameraCaptureSession_close(ACameraCaptureSession* session) {
44 ACameraCaptureSession* session, ACameraDevice **device) {
69 ACameraCaptureSession* session, /*optional*/ACameraCaptureSession_captureCallbacks* cbs,
90 ACameraCaptureSession* session, /*optional*/ACameraCaptureSession_captureCallbacks* cbs,
110 camera_status_t ACameraCaptureSession_stopRepeating(ACameraCaptureSession* session) {
125 camera_status_t ACameraCaptureSession_abortCaptures(ACameraCaptureSession* session) {
140 camera_status_t ACameraCaptureSession_updateSharedOutput(ACameraCaptureSession* session,
Android.mk 32 impl/ACameraCaptureSession.cpp
NdkCameraDevice.cpp 25 #include "impl/ACameraCaptureSession.h"
216 /*out*/ACameraCaptureSession** session) {
232 /*out*/ACameraCaptureSession** session) {
  /cts/tests/tests/media/libimagereaderjni/
AImageReaderCts.cpp 232 static void onSessionClosed(void* /*obj*/, ACameraCaptureSession* /*session*/) {}
234 static void onSessionReady(void* /*obj*/, ACameraCaptureSession* /*session*/) {}
236 static void onSessionActive(void* /*obj*/, ACameraCaptureSession* /*session*/) {}
255 ACameraCaptureSession* mSession = nullptr;
  /cts/tests/camera/libctscamera2jni/
native-camera-jni.cpp 143 static void onClosed(void* obj, ACameraCaptureSession *session) {
155 static void onReady(void* obj, ACameraCaptureSession *session) {
175 static void onActive(void* obj, ACameraCaptureSession *session) {
251 static void onCaptureStart(void* /*obj*/, ACameraCaptureSession* /*session*/,
256 static void onCaptureProgressed(void* /*obj*/, ACameraCaptureSession* /*session*/,
261 static void onCaptureCompleted(void* obj, ACameraCaptureSession* /*session*/,
284 static void onCaptureFailed(void* obj, ACameraCaptureSession* /*session*/,
296 static void onCaptureSequenceCompleted(void* obj, ACameraCaptureSession* /*session*/,
309 static void onCaptureSequenceAborted(void* /*obj*/, ACameraCaptureSession* /*session*/,
314 static void onCaptureBufferLost(void* obj, ACameraCaptureSession* /*session*/
    [all...]

Completed in 359 milliseconds