Searched refs:repeating (Results 1 - 11 of 11) 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, CaptureRequest[] requests, argument
47 /*request*/r, repeating, jpegSurfaceIds));
50 mRepeating = repeating;
62 * Return true if this repeating.
H A DRequestHolder.java51 * This allows per-request queries to be cached for repeating {@link CaptureRequest} objects.
70 * @param repeating {@code true} if the request is repeating.
73 boolean repeating, Collection<Long> jpegSurfaceIds) {
78 mRepeating = repeating;
161 boolean repeating, long frameNumber, int numJpegTargets,
163 mRepeating = repeating;
181 * Returns true if the contained request is repeating.
72 Builder(int requestId, int subsequenceId, CaptureRequest request, boolean repeating, Collection<Long> jpegSurfaceIds) argument
160 RequestHolder(int requestId, int subsequenceId, CaptureRequest request, boolean repeating, long frameNumber, int numJpegTargets, int numPreviewTargets, Collection<Long> jpegSurfaceIds) argument
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
119 submit(CaptureRequest[] requests, boolean repeating) argument
[all...]
H A DLegacyCameraDevice.java406 * @param repeating {@code true} if this burst is repeating.
409 * or the frame number of the last frame that will be returned for the current repeating
410 * request if this burst is set to be repeating.
412 public SubmitInfo submitRequestList(CaptureRequest[] requestList, boolean repeating) { argument
460 return mRequestThreadManager.submitCaptureRequests(requestList, repeating);
467 * @param repeating {@code true} if this request is repeating.
470 * or the frame number of the last frame that will be returned for the current repeating
471 * request if this burst is set to be repeating
473 submitRequest(CaptureRequest request, boolean repeating) argument
[all...]
H A DRequestThreadManager.java920 // Stop the repeating request if any of its output surfaces is abandoned.
924 Log.d(TAG, "Stopped repeating request. Last frame number is " +
1034 * <p>If the burst is repeating, replace the current repeating burst.</p>
1037 * @param repeating true if the burst is repeating.
1040 * or the frame number of the last frame that will be returned for the current repeating
1041 * request if this burst is set to be repeating.
1043 public SubmitInfo submitCaptureRequests(CaptureRequest[] requests, boolean repeating) { argument
1047 info = mRequestQueue.submit(requests, repeating);
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DTrustDrawable.java205 true /* repeating */, false /* stateUpdateListener */);
211 false /* repeating */, true /* stateUpdateListener */);
217 false /* repeating */, true /* stateUpdateListener */);
222 boolean repeating, boolean stateUpdateListener) {
225 duration, mAlphaUpdateListener, interpolator, repeating);
228 duration, mRadiusUpdateListener, interpolator, repeating);
240 boolean repeating) {
244 if (repeating) {
220 makeAnimators(float startRadius, float endRadius, int startAlpha, int endAlpha, long duration, Interpolator interpolator, boolean repeating, boolean stateUpdateListener) argument
238 configureAnimator(ValueAnimator animator, long duration, ValueAnimator.AnimatorUpdateListener updateListener, Interpolator interpolator, boolean repeating) argument
/frameworks/base/services/core/java/com/android/server/am/
H A DAppErrorDialog.java69 mRepeating = data.repeating;
208 boolean repeating; field in class:AppErrorDialog.Data
H A DAppErrors.java625 data.repeating = true;
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraDeviceImpl.java801 * starting and stopping repeating request and flushing.
808 * @param requestId the request ID of the current repeating request.
870 Handler handler, boolean repeating) throws CameraAccessException {
892 if (repeating) {
899 requestInfo = mRemoteDevice.submitRequestList(requestArray, repeating);
907 callback, requestList, handler, repeating, mNextSessionId - 1));
914 if (repeating) {
980 throw new IllegalStateException("Active repeating request ongoing");
1224 Handler handler, boolean repeating, int sessionId) {
1229 mRepeating = repeating;
869 submitCaptureRequest(List<CaptureRequest> requestList, CaptureCallback callback, Handler handler, boolean repeating) argument
1223 CaptureCallbackHolder(CaptureCallback callback, List<CaptureRequest> requestList, Handler handler, boolean repeating, int sessionId) argument
[all...]
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Device.h310 status_t submitRequestsHelper(const List<const CameraMetadata> &requests, bool repeating,
471 * Set or clear the list of repeating requests. Does not block
486 * Remove all queued and repeating requests, and pending triggers
531 * Returns true if the stream is a target of any queued or repeating
581 // Stop the repeating request if any of its output streams is abandoned.
597 // Clear repeating requests. Must be called with mRequestLock held.
H A DCamera3Device.cpp745 const List<const CameraMetadata> &requests, bool repeating,
766 if (repeating) {
792 return submitRequestsHelper(requests, /*repeating*/false, lastFrameNumber);
808 return submitRequestsHelper(requests, /*repeating*/true, lastFrameNumber);
853 ALOGV("Camera %d: Clearing repeating request", mId);
2901 // All repeating requests are guaranteed to have same id so only check first quest
2929 // pending repeating requests
3073 // Check all streams needed by repeating requests are still valid. Otherwise, stop
3074 // repeating requests.
3448 // Optimized a bit for the simple steady-state case (single repeating
744 submitRequestsHelper( const List<const CameraMetadata> &requests, bool repeating, int64_t *lastFrameNumber) argument
[all...]

Completed in 462 milliseconds