Searched defs:repeating (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DBurstHolder.java37 * @param repeating true if this burst is repeating.
41 public BurstHolder(int requestId, boolean repeating, List<CaptureRequest> requests, argument
47 /*request*/r, repeating, jpegSurfaceIds));
50 mRepeating = repeating;
62 * Return true if this repeating.
H A DRequestQueue.java51 * <p>If a repeating burst is returned, it will not be removed.</p>
73 * Cancel a repeating request.
75 * @param requestId the id of the repeating request to cancel.
76 * @return the last frame to be returned from the HAL for the given repeating request, or
88 Log.e(TAG, "cancel failed: no repeating request exists for request id: " + requestId);
94 * Cancel a repeating request.
96 * @return the last frame to be returned from the HAL for the given repeating request, or
101 Log.e(TAG, "cancel failed: no repeating request exists.");
110 * <p>If the burst is repeating, replace the current repeating burs
120 submit(List<CaptureRequest> requests, boolean repeating, LongParcelable frameNumber) argument
[all...]
H A DRequestHolder.java48 * This allows per-request queries to be cached for repeating {@link CaptureRequest} objects.
67 * @param repeating {@code true} if the request is repeating.
70 boolean repeating, Collection<Long> jpegSurfaceIds) {
75 mRepeating = repeating;
158 boolean repeating, long frameNumber, int numJpegTargets,
160 mRepeating = repeating;
177 * Returns true if the contained request is repeating.
69 Builder(int requestId, int subsequenceId, CaptureRequest request, boolean repeating, Collection<Long> jpegSurfaceIds) argument
157 RequestHolder(int requestId, int subsequenceId, CaptureRequest request, boolean repeating, long frameNumber, int numJpegTargets, int numPreviewTargets) argument
H A DLegacyCameraDevice.java369 * @param repeating {@code true} if this burst is repeating.
372 * frame that will be returned for the current repeating request if this
373 * burst is set to be repeating.
376 public int submitRequestList(List<CaptureRequest> requestList, boolean repeating, argument
411 return mRequestThreadManager.submitCaptureRequests(requestList, repeating,
419 * @param repeating {@code true} if this request is repeating.
422 * frame that will be returned for the current repeating request if this
423 * request is set to be repeating
426 submitRequest(CaptureRequest request, boolean repeating, LongParcelable frameNumber) argument
[all...]
H A DRequestThreadManager.java1007 * <p>If the burst is repeating, replace the current repeating burst.</p>
1010 * @param repeating true if the burst is repeating.
1013 * frame that will be returned for the current repeating request if this
1014 * burst is set to be repeating.
1017 public int submitCaptureRequests(List<CaptureRequest> requests, boolean repeating, argument
1022 ret = mRequestQueue.submit(requests, repeating, frameNumber);
1029 * Cancel a repeating request.
1031 * @param requestId the id of the repeating reques
[all...]
/frameworks/av/camera/camera2/
H A DICameraDeviceUser.cpp87 virtual int submitRequest(sp<CaptureRequest> request, bool repeating, argument
102 data.writeInt32(repeating);
122 virtual int submitRequestList(List<sp<CaptureRequest> > requestList, bool repeating, argument
143 data.writeInt32(repeating);
431 bool repeating = data.readInt32(); local
436 reply->writeInt32(submitRequest(request, repeating, &lastFrameNumber));
461 bool repeating = data.readInt32(); local
465 reply->writeInt32(submitRequestList(requestList, repeating, &lastFrameNumber));
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DTrustDrawable.java216 true /* repeating */, false /* stateUpdateListener */);
222 false /* repeating */, true /* stateUpdateListener */);
228 false /* repeating */, true /* stateUpdateListener */);
233 boolean repeating, boolean stateUpdateListener) {
236 duration, mAlphaUpdateListener, interpolator, repeating);
239 duration, mRadiusUpdateListener, interpolator, repeating);
251 boolean repeating) {
255 if (repeating) {
231 makeAnimators(float startRadius, float endRadius, int startAlpha, int endAlpha, long duration, Interpolator interpolator, boolean repeating, boolean stateUpdateListener) argument
249 configureAnimator(ValueAnimator animator, long duration, ValueAnimator.AnimatorUpdateListener updateListener, Interpolator interpolator, boolean repeating) argument
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraDeviceImpl.java754 * starting and stopping repeating request and flushing.
761 * @param requestId the request ID of the current repeating request.
823 Handler handler, boolean repeating) throws CameraAccessException {
847 if (repeating) {
853 requestId = mRemoteDevice.submitRequestList(requestList, repeating,
867 requestList, handler, repeating, mNextSessionId - 1));
876 if (repeating) {
947 throw new IllegalStateException("Active repeating request ongoing");
1205 Handler handler, boolean repeating, int sessionId) {
1210 mRepeating = repeating;
822 submitCaptureRequest(List<CaptureRequest> requestList, CaptureCallback callback, Handler handler, boolean repeating) argument
1204 CaptureCallbackHolder(CaptureCallback callback, List<CaptureRequest> requestList, Handler handler, boolean repeating, int sessionId) argument
[all...]
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Device.cpp594 const List<const CameraMetadata> &requests, bool repeating,
615 if (repeating) {
641 return submitRequestsHelper(requests, /*repeating*/false, lastFrameNumber);
657 return submitRequestsHelper(requests, /*repeating*/true, lastFrameNumber);
709 ALOGV("Camera %d: Clearing repeating request", mId);
2749 // All repeating requests are guaranteed to have same id so only check first quest
2773 // pending repeating requests
3237 // Optimized a bit for the simple steady-state case (single repeating
3284 // Always atomically enqueue all requests in a repeating request
3321 // Don't have a repeating reques
593 submitRequestsHelper( const List<const CameraMetadata> &requests, bool repeating, int64_t *lastFrameNumber) argument
[all...]

Completed in 214 milliseconds