Searched refs:streaming (Results 1 - 13 of 13) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/
H A DICameraDeviceUser.aidl37 int submitRequest(in CaptureRequest request, boolean streaming,
40 int submitRequestList(in List<CaptureRequest> requestList, boolean streaming,
/frameworks/av/include/camera/camera2/
H A DICameraDeviceUser.h53 * For streaming requests, output lastFrameNumber is the last frame number
55 * For non-streaming requests, output lastFrameNumber is the expected last
59 bool streaming = false,
64 * For streaming requests, output lastFrameNumber is the last frame number
66 * For non-streaming requests, output lastFrameNumber is the expected last
70 bool streaming = false,
/frameworks/av/services/camera/libcameraservice/api2/
H A DCameraDeviceClient.h67 bool streaming = false,
72 bool streaming = false,
H A DCameraDeviceClient.cpp95 bool streaming,
100 return submitRequestList(requestList, streaming, lastFrameNumber);
104 bool streaming, int64_t* lastFrameNumber) {
188 if (streaming) {
191 ALOGE("%s: Camera %d: Got error %d after trying to set streaming "
234 ALOGE("%s: Camera%d: Did not find request id %d in list of streaming "
242 ALOGV("%s: Camera %d: Successfully cleared streaming request",
556 ALOGE("%s: Camera %d: Try to waitUntilIdle when there are active streaming requests",
94 submitRequest(sp<CaptureRequest> request, bool streaming, int64_t* lastFrameNumber) argument
103 submitRequestList(List<sp<CaptureRequest> > requests, bool streaming, int64_t* lastFrameNumber) argument
/frameworks/av/include/camera/
H A DIProCameraUser.h64 bool streaming = false) = 0;
H A DProCamera.h148 * < 0 error, >= 0 the request ID. streaming to have the request repeat
154 bool streaming = false);
169 * NOTE: As a side effect this cancels ALL streaming requests.
/frameworks/av/services/camera/libcameraservice/api_pro/
H A DProCamera2Client.h49 bool streaming = false);
H A DProCamera2Client.cpp191 bool streaming) {
209 if (streaming) {
190 submitRequest(camera_metadata_t* request, bool streaming) argument
/frameworks/av/camera/
H A DIProCameraUser.cpp106 virtual int submitRequest(camera_metadata_t* metadata, bool streaming) argument
115 // arg2 = streaming (bool)
116 data.writeInt32(streaming);
244 // arg2 = streaming (bool)
245 bool streaming = data.readInt32(); local
248 reply->writeInt32(submitRequest(metadata, streaming));
H A DProCamera.cpp153 bool streaming)
159 streaming);
152 submitRequest(const struct camera_metadata* metadata, bool streaming) argument
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DCameraDeviceUserShim.java373 public int submitRequest(CaptureRequest request, boolean streaming, argument
389 return mLegacyDevice.submitRequest(request, streaming, lastFrameNumber);
393 public int submitRequestList(List<CaptureRequest> request, boolean streaming, argument
409 return mLegacyDevice.submitRequestList(request, streaming, lastFrameNumber);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/integration/
H A DCameraDeviceBinderTest.java50 // Number of streaming callbacks need to check.
172 private int submitCameraRequest(CaptureRequest request, boolean streaming) throws Exception { argument
173 int requestId = mCameraUser.submitRequest(request, streaming, null);
286 int status = mCameraUser.submitRequest(request1, /* streaming */false, null);
292 status = mCameraUser.submitRequest(request2, /* streaming */false, null);
305 int requestId1 = submitCameraRequest(request, /* streaming */false);
306 int requestId2 = submitCameraRequest(request, /* streaming */false);
318 // Submit valid request once (non-streaming), and another time
319 // (streaming)
320 int requestId1 = submitCameraRequest(request, /* streaming */fals
[all...]
/frameworks/av/services/camera/libcameraservice/
H A DCameraService.h326 bool streaming = false) = 0;

Completed in 184 milliseconds