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, CaptureRequest[] requests, argument
47 /*request*/r, repeating, jpegSurfaceIds));
50 mRepeating = repeating;
62 * Return true if this repeating.
H A DRequestQueue.java72 * <p>If a repeating burst is returned, it will not be removed.</p>
96 * Cancel a repeating request.
98 * @param requestId the id of the repeating request to cancel.
99 * @return the last frame to be returned from the HAL for the given repeating request, or
111 Log.e(TAG, "cancel failed: no repeating request exists for request id: " + requestId);
117 * Cancel a repeating request.
119 * @return the last frame to be returned from the HAL for the given repeating request, or
124 Log.e(TAG, "cancel failed: no repeating request exists.");
133 * <p>If the burst is repeating, replace the current repeating burs
142 submit(CaptureRequest[] requests, boolean repeating) argument
[all...]
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 DLegacyCameraDevice.java427 * @param repeating {@code true} if this burst is repeating.
430 * or the frame number of the last frame that will be returned for the current repeating
431 * request if this burst is set to be repeating.
433 public SubmitInfo submitRequestList(CaptureRequest[] requestList, boolean repeating) { argument
481 return mRequestThreadManager.submitCaptureRequests(requestList, repeating);
488 * @param repeating {@code true} if this request is repeating.
491 * or the frame number of the last frame that will be returned for the current repeating
492 * request if this burst is set to be repeating
494 submitRequest(CaptureRequest request, boolean repeating) argument
[all...]
H A DRequestThreadManager.java940 // Stop the repeating request if any of its output surfaces is abandoned.
944 Log.d(TAG, "Stopped repeating request. Last frame number is " +
1055 * <p>If the burst is repeating, replace the current repeating burst.</p>
1058 * @param repeating true if the burst is repeating.
1061 * or the frame number of the last frame that will be returned for the current repeating
1062 * request if this burst is set to be repeating.
1064 public SubmitInfo submitCaptureRequests(CaptureRequest[] requests, boolean repeating) { argument
1068 info = mRequestQueue.submit(requests, repeating);
[all...]
/frameworks/base/services/core/java/com/android/server/am/
H A DAppErrorDialog.java75 data.repeating ? com.android.internal.R.string.aerr_application_repeated
82 data.repeating ? com.android.internal.R.string.aerr_process_repeated
213 boolean repeating; field in class:AppErrorDialog.Data
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
H A DTrustDrawable.java206 true /* repeating */, false /* stateUpdateListener */);
212 false /* repeating */, true /* stateUpdateListener */);
218 false /* repeating */, true /* stateUpdateListener */);
223 boolean repeating, boolean stateUpdateListener) {
226 duration, mAlphaUpdateListener, interpolator, repeating);
229 duration, mRadiusUpdateListener, interpolator, repeating);
241 boolean repeating) {
245 if (repeating) {
221 makeAnimators(float startRadius, float endRadius, int startAlpha, int endAlpha, long duration, Interpolator interpolator, boolean repeating, boolean stateUpdateListener) argument
239 configureAnimator(ValueAnimator animator, long duration, ValueAnimator.AnimatorUpdateListener updateListener, Interpolator interpolator, boolean repeating) argument
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraDeviceImpl.java927 * starting and stopping repeating request and flushing.
934 * @param requestId the request ID of the current repeating request.
1001 Executor executor, boolean repeating) throws CameraAccessException {
1035 if (repeating) {
1047 requestInfo = mRemoteDevice.submitRequestList(requestArray, repeating);
1059 callback, requestList, executor, repeating, mNextSessionId - 1));
1066 if (repeating) {
1132 throw new IllegalStateException("Active repeating request ongoing");
1352 * This method is called when camera device's non-repeating request queue is empty,
1385 Executor executor, boolean repeating, in
1000 submitCaptureRequest(List<CaptureRequest> requestList, CaptureCallback callback, Executor executor, boolean repeating) argument
1384 CaptureCallbackHolder(CaptureCallback callback, List<CaptureRequest> requestList, Executor executor, boolean repeating, int sessionId) argument
[all...]
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Device.cpp756 bool repeating,
774 newRequest->mRepeating = repeating;
843 bool repeating,
859 repeating, /*out*/&requestList);
865 if (repeating) {
1170 return submitRequestsHelper(requestsList, surfaceMaps, /*repeating*/false, lastFrameNumber);
1190 return submitRequestsHelper(requestsList, surfaceMaps, /*repeating*/true, lastFrameNumber);
1238 ALOGV("Camera %s: Clearing repeating request", mId.string());
4211 // All repeating requests are guaranteed to have same id so only check first quest
4241 // pending repeating request
753 convertMetadataListToRequestListLocked( const List<const PhysicalCameraSettingsList> &metadataList, const std::list<const SurfaceMap> &surfaceMaps, bool repeating, RequestList *requestList) argument
840 submitRequestsHelper( const List<const PhysicalCameraSettingsList> &requests, const std::list<const SurfaceMap> &surfaceMaps, bool repeating, int64_t *lastFrameNumber) argument
[all...]

Completed in 225 milliseconds