Searched refs:capture (Results 1 - 25 of 28) sorted by relevance

12

/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 DCameraDevice.java26 * Android device, allowing for fine-grain control of image capture and
60 * Create a request suitable for still image capture. Specifically, this
62 * commonly be used with the {@link #capture} method.
79 * Create a request suitable for still image capture while recording
82 * with the {@link #capture} method while a request based on
90 * Create a request suitable for zero shutter lag still capture. This means
100 * A basic template for direct application control of capture
103 * quality. The manual capture parameters (exposure, sensitivity, and so on)
136 * the camera device for each capture request. A given request may use all
138 * can be submitted to the camera with {@link #capture captur
317 public int capture(CaptureRequest request, CaptureListener listener, Handler handler) method in interface:CameraDevice
[all...]
/frameworks/av/services/camera/libcameraservice/common/
H A DCameraDeviceBase.h55 * Submit request for capture. The CameraDevice takes ownership of the
58 virtual status_t capture(CameraMetadata &request) = 0;
203 * Trigger pre-capture metering. The latest ID used in a trigger pre-capture
/frameworks/base/core/java/android/webkit/
H A DWebChromeClient.java378 * @param capture The value of the 'capture' attribute of the input tag
382 public void openFileChooser(ValueCallback<Uri> uploadFile, String acceptType, String capture) { argument
/frameworks/base/tests/TtsTests/src/com/android/speech/tts/
H A DTextToSpeechTests.java94 LittleMock.verify(delegate, LittleMock.times(1)).onSynthesizeText(req.capture(),
116 LittleMock.verify(delegate, LittleMock.times(1)).onSynthesizeText(req2.capture(),
/frameworks/native/include/gui/
H A DSurfaceComposerClient.h163 static status_t capture(
179 // frees the previous screenshot and capture a new one
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/
H A DMediaPresetReverbTest.java232 int energy1000 = probe.capture(1000);
315 int energy1000 = probe.capture(1000);
H A DMediaEnvReverbTest.java389 int energy1000 = probe.capture(1000);
474 int energy1000 = probe.capture(1000);
/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(),
950 public Capture<T> capture = new Capture<T>() { field in class:NetworkPolicyManagerServiceTest.FutureCapture
H A DConnectivityServiceTest.java136 .startMonitoring(isA(Context.class), trackerHandler.capture());
H A DNetworkStatsServiceTest.java43 import static org.easymock.EasyMock.capture;
152 mNetManager.registerObserver(capture(networkObserver));
304 mNetManager.registerObserver(capture(networkObserver));
/frameworks/av/services/camera/libcameraservice/api_pro/
H A DProCamera2Client.cpp212 return mDevice->capture(metadata);
/frameworks/av/services/camera/libcameraservice/device2/
H A DCamera2Device.h50 virtual status_t capture(CameraMetadata &request);
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Device.h81 virtual status_t capture(CameraMetadata &request);
240 * Do common work for setting up a streaming or single capture request.
291 * Thread for managing capture request submission to HAL device.
330 * Pause/unpause the capture thread. Doesn't block, so use
336 * Wait until thread processes the capture request with settings'
436 * In-flight queue for tracking completion of capture requests.
/frameworks/base/core/java/android/ddm/
H A DDdmHandleViewDebug.java264 ViewDebug.capture(rootView, b, targetView);
/frameworks/base/core/java/android/view/
H A DViewDebug.java289 * @return the View to capture from, or null if not found
297 // Maximum delay in ms after which we stop trying to capture a View's drawing
422 capture(view, clientStream, params[0]);
718 private static void capture(View root, final OutputStream clientStream, String parameter) method in class:ViewDebug
722 capture(root, clientStream, captureView);
726 public static void capture(View root, final OutputStream clientStream, View captureView) method in class:ViewDebug
731 Log.w("View", "Failed to create capture bitmap!");
773 Log.w("View", "Could not complete the capture of the view " + captureView);
/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DZslProcessor3.cpp104 ALOGE("%s: Camera %d: Error querying capture output stream info: "
242 ALOGV("%s: ZSL queue frame AE state is %d, need full capture",
270 ALOGE("%s: Camera %d: Unable to stop preview for ZSL capture: "
282 "capture request: %s (%d)", __FUNCTION__,
290 res = client->getCameraDevice()->capture(request);
292 ALOGE("%s: Unable to send ZSL reprocess request to capture: %s"
305 // If in middle of capture, can't clear out queue
321 String8 result(" Latest ZSL capture request:\n");
325 String8 result(" Latest ZSL capture request: none yet\n");
410 "full capture", __FUNCTION_
[all...]
H A DCaptureSequencer.cpp144 result = String8::format(" Current capture state: %s\n",
210 ALOGV("Camera %d: New capture state %s",
216 ALOGE("Camera %d: Stopping capture sequencer due to error",
265 ALOGE("%s: Camera %d: Can't idle after still capture: "
321 ALOGE("%s: Camera %d: Can't update still image capture request: %s (%d)",
360 "falling back to normal capture", __FUNCTION__,
469 * - capture/jpeg
501 ALOGE("%s: Camera %d: Unable to set up still capture request: %s (%d)",
506 // Create a capture copy since CameraDeviceBase#capture take
[all...]
H A DZslProcessor.cpp104 // Erase entire ZSL queue since we've now completed the capture and preview
146 ALOGE("%s: Camera %d: Error querying capture output stream info: "
292 ALOGV("%s: ZSL queue frame AE state is %d, need full capture",
321 ALOGE("%s: Camera %d: Unable to stop preview for ZSL capture: "
341 "capture request: %s (%d)", __FUNCTION__,
349 res = client->getCameraDevice()->capture(request);
351 ALOGE("%s: Unable to send ZSL reprocess request to capture: %s (%d)",
366 // If in middle of capture, can't clear out queue
387 String8 result(" Latest ZSL capture request:\n");
391 String8 result(" Latest ZSL capture reques
[all...]
/frameworks/base/core/java/android/hardware/camera2/impl/
H A DCameraDevice.java252 public int capture(CaptureRequest request, CaptureListener listener, Handler handler) method in class:CameraDevice
265 throw new UnsupportedOperationException("Burst capture implemented yet");
326 throw new UnsupportedOperationException("Burst capture implemented yet");
558 // Dispatch capture start notice
595 // TODO: add 'capture sequence completed' callback to the
627 // Either send a partial result or the final capture completed result
642 // Final capture result
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/integration/
H A DCameraDeviceBinderTest.java51 // Wait for capture result timeout value: 1500ms
380 timestamps.capture());
406 // Submit a few capture requests
433 // Submit a few capture requests
/frameworks/av/services/camera/libcameraservice/api2/
H A DCameraDeviceClient.cpp131 * the capture request's list of surface targets
174 res = mDevice->capture(metadata);
176 ALOGE("%s: Camera %d: Got error %d after trying to set capture",
/frameworks/base/core/jni/
H A Dandroid_view_SurfaceControl.cpp193 ScreenshotClient::capture(
/frameworks/base/docs/html/training/
H A Dtraining_toc.cs175 on the device to perform advanced user tasks, such as capture a photo or view
319 "How to leverage existing camera apps on the user's device to capture
/frameworks/native/libs/gui/
H A DSurfaceComposerClient.cpp622 status_t ScreenshotClient::capture( function in class:android::ScreenshotClient

Completed in 738 milliseconds

12