Searched defs:stopRepeating (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DRequestQueue.java79 public synchronized long stopRepeating(int requestId) { method in class:RequestQueue
99 public synchronized long stopRepeating() { method in class:RequestQueue
104 return stopRepeating(mRepeatingRequest.getRequestId());
/frameworks/base/core/java/android/hardware/camera2/
H A DCameraCaptureSession.java50 * <p>A closed session clears any repeating requests (as if {@link #stopRepeating} had been called),
170 * <p>To stop the repeating capture, call {@link #stopRepeating}. Calling
203 * @see #stopRepeating
229 * <p>To stop the repeating capture, call {@link #stopRepeating}. Any
263 * @see #stopRepeating
290 public abstract void stopRepeating() throws CameraAccessException; method in class:CameraCaptureSession
340 * repeating requests or bursts are stopped (as if {@link #stopRepeating()} was called).
430 * any repeating requests or bursts are stopped (as if {@link #stopRepeating()} was called).
684 * by a variety of operations such as {@link CameraCaptureSession#stopRepeating} or
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraCaptureSessionImpl.java232 public synchronized void stopRepeating() throws CameraAccessException { method in class:CameraCaptureSessionImpl
236 Log.v(TAG, mIdString + "stopRepeating");
239 mDeviceImpl.stopRepeating();
324 * Otherwise, once stopRepeating is done, wait for camera to idle, then unconfigure the
328 mDeviceImpl.stopRepeating();
H A DCameraDeviceImpl.java362 stopRepeating();
612 stopRepeating();
674 public void stopRepeating() throws CameraAccessException { method in class:CameraDeviceImpl

Completed in 83 milliseconds