Searched defs:capture (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
H A DEnergyProbe.java56 public int capture(int freq) throws InterruptedException { method in class:EnergyProbe
/frameworks/base/core/java/android/hardware/camera2/
H A DCameraCaptureSession.java23 * A configured capture session for a {@link CameraDevice}, used for capturing
40 * <p>Any capture requests (repeating or non-repeating) submitted before the session is ready will
41 * be queued up and will begin capture once the session becomes ready. In case the session cannot be
43 * capture requests are discarded.</p>
51 * but will still complete all of its in-progress capture requests as normal, before a newly
71 * capture session was created.</p>
75 * capture. Requests submitted through this method have higher priority than
80 * @param request the settings for this capture
82 * processed. If null, no metadata will be produced for this capture,
88 * @return int A unique capture sequenc
106 public abstract int capture(CaptureRequest request, CaptureCallback listener, Handler handler) method in class:CameraCaptureSession
[all...]
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbAudioManager.java96 private boolean waitForAlsaFile(int card, int device, boolean capture) { argument
100 String alsaDevPath = "/dev/snd/pcmC" + card + "D" + device + (capture ? "c" : "p");
/frameworks/base/tests/Camera2Tests/CameraToo/src/com/example/android/camera2/cameratoo/
H A DCameraTooActivity.java79 /** Our image capture session. */
192 mCaptureSession.capture(requester.build(), /*listener*/null, /*handler*/null);
194 Log.e(TAG, "Failed to file actual capture request", ex);
197 Log.e(TAG, "Failed to build actual capture request", ex);
200 Log.e(TAG, "User attempted to perform a capture outside our session");
251 // Prepare an ImageReader in case the user wants to capture images
260 // gorgeous previews but the storage of garbage capture data.
320 Log.e(TAG, "Failed to create a capture session", ex);
403 public CapturedImageSaver(Image capture) { argument
404 mCapture = capture;
[all...]
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraCaptureSessionImpl.java135 Log.e(TAG, mIdString + "Failed to create capture session; configuration failed");
146 public synchronized int capture(CaptureRequest request, CaptureCallback callback, method in class:CameraCaptureSessionImpl
157 Log.v(TAG, mIdString + "capture - request " + request + ", callback " + callback +
161 return addPendingSequence(mDeviceImpl.capture(request,
354 * <p>This is used by the implementation to set the capture failure
384 * <p>When a capture sequence finishes, update the pending checked sequences set.</p>
575 * Notify the session that a pending capture sequence has just been queued.
588 * Notify the session that a pending capture sequence is now finished.
601 * No repeating request is set; and the capture queue has fully drained.
653 // Fast path: A new capture sessio
[all...]
H A DCameraDeviceImpl.java496 public int capture(CaptureRequest request, CaptureCallback callback, Handler handler) method in class:CameraDeviceImpl
499 Log.d(TAG, "calling capture");
815 * This method is called when some results from an image capture are
826 * This method is called when an image capture makes partial forward progress; some
827 * (but not all) results from an image capture are available.
836 * This method is called when an image capture has fully completed and all the
856 * when a capture sequence finishes and all {@link CaptureResult}
866 * when a capture sequence aborts before any {@link CaptureResult}
890 * {@link CaptureRequest capture requests}.
907 * submitted capture request
[all...]
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DCaptureCollector.java91 // Send a request error if the capture has not yet started.
129 "setJpegTimestamp called for capture with no jpeg targets.");
157 "setJpegProduced called for capture with no jpeg targets.");
188 "setPreviewTimestamp called for capture with no preview targets.");
218 "setPreviewProduced called for capture with no preview targets.");
458 * Called to alert the {@link CaptureCollector} that the jpeg capture has begun.
460 * @param timestamp the time of the jpeg capture.
461 * @return the {@link RequestHolder} for the request associated with this capture.
480 * Called to alert the {@link CaptureCollector} that the jpeg capture has completed.
482 * @return a pair containing the {@link RequestHolder} and the timestamp of the capture
646 onRequestCompleted(CaptureHolder capture) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebChromeClient.java462 * True indicates capture is enabled, false disabled.
464 * Use <code>getAcceptTypes</code> to determine suitable capture devices.
482 * on the device. Some advanced sources (for example, live media capture)
492 * 5. Parse the result using {@link #parseResult} only if media capture was not requested.
507 * @param capture The value of the 'capture' attribute of the input tag
515 public void openFileChooser(ValueCallback<Uri> uploadFile, String acceptType, String capture) { argument
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DNetworkPolicyManagerServiceTest.java42 import static org.easymock.EasyMock.capture;
209 mActivityManager.registerProcessObserver(capture(processObserver));
215 mNetworkManager.registerObserver(capture(networkObserver));
868 capture(tag.capture), anyInt(),
948 public Capture<T> capture = new Capture<T>() { field in class:NetworkPolicyManagerServiceTest.FutureCapture
/frameworks/base/core/java/android/view/
H A DViewDebug.java306 * @return the View to capture from, or null if not found
314 // Maximum delay in ms after which we stop trying to capture a View's drawing
442 capture(view, clientStream, params[0]);
738 private static void capture(View root, final OutputStream clientStream, String parameter) method in class:ViewDebug
742 capture(root, clientStream, captureView);
746 public static void capture(View root, final OutputStream clientStream, View captureView) method in class:ViewDebug
751 Log.w("View", "Failed to create capture bitmap!");
793 Log.w("View", "Could not complete the capture of the view " + captureView);
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/
H A DCameraAgent.java734 * <p>If capture rotation is not requested, future captures will be returned in the sensor's
739 * @param capture Whether to adjust the JPEG capture orientation as well as the preview one.
741 public void setDisplayOrientation(final int degrees, final boolean capture) { argument
748 capture ? 1 : 0)
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp687 status_t ScreenshotClient::capture( function in class:android::ScreenshotClient
/frameworks/av/services/camera/libcameraservice/device2/
H A DCamera2Device.cpp204 status_t Camera2Device::capture(CameraMetadata &request, int64_t* /*lastFrameNumber*/) { function in class:android::Camera2Device
215 ALOGE("%s: Camera2Device burst capture not implemented", __FUNCTION__);
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Device.cpp498 CLOGE("Can't create capture request");
522 status_t Camera3Device::capture(CameraMetadata &request, int64_t* /*lastFrameNumber*/) { function in class:android::Camera3Device
1917 ATRACE_ASYNC_END("frame capture", frameNumber);
1958 SET_ERR("Out-of-order capture result metadata submitted! "
2053 SET_ERR("Unknown frame number for capture result: %d",
2115 // Did we get the (final) result metadata for this capture?
2613 "(capture request %d, HAL device: %s (%d)",
2631 "(capture request %d, HAL device: %s (%d)",
2752 ATRACE_ASYNC_BEGIN("frame capture", request.frame_number);
2761 SET_ERR("RequestThread: Unable to submit capture reques
[all...]

Completed in 3387 milliseconds