/hardware/libhardware/tests/camera2/ |
CameraBurstTests.cpp | 217 // Submit capture requests 222 ALOGV("Submitting capture request %d with exposure %" PRId64, i, 224 dout << "Capture request " << i << " exposure is " 226 ASSERT_EQ(OK, mDevice->capture(tmpRequest)); 234 ALOGV("Reading capture request %d with exposure %" PRId64, i, exposures[i]); 236 ALOGV("Reading capture request-1 %d", i); 239 ALOGV("Reading capture request-2 %d", i); 560 << "Capture " << i << " exposure too long: " << expList[i]; 562 << "Capture " << i << " exposure too short: " << expList[i]; 564 << "Capture " << i << " duration too long: " << durationList[i] [all...] |
CameraMultiStreamTests.cpp | 41 // 5% tolerance margin for exposure sanity check against capture times 312 // Create capture request, manual settings 358 ASSERT_EQ(OK, mDevice->capture(request)); 366 // Get capture burst results. 396 std::cout << "capture result req id: " << resultRequestId << std::endl; 400 ALOGV("Got capture burst result for request %zu", i); 402 // Validate capture result 419 ALOGV("Got capture buffer for request %zu", i); 422 * TODO: Validate capture buffer. Current brightness calculation 457 * (or analog gain implemented sensitivities) then check if the capture [all...] |
/external/libpcap/ |
README.dag | 29 capture stream (linux or bpf) and for capturing from DAG cards. To build 30 libpcap with only DAG support specify the capture type as 'dag' when 36 cards and will not capture from the native OS packet stream. 61 dag0:0, dag0:2 etc. Specifying transmit streams for capture is not supported. 86 streams. Capture streams have even numbers. These are available via libpcap 96 DAG cards by default capture entire packets including the L2 111 applications may incorrectly report capture errors or oversize packets
|
README.macosx | 2 to the BPF devices to capture packets with libpcap and allows users with 72 to grant write permission to everybody who should be allowed to capture 74 not be able to capture outgoing packets.)
|
/external/mockito/src/org/mockito/ |
ArgumentCaptor.java | 14 * Use it to capture argument values for further assertions.
23 * verify(mock).doSomething(argument.capture());
74 * verify(mock).doSomething(argument.capture());
88 * Use it to capture the argument. This method <b>must be used inside of verification</b>.
97 public T capture() {
method in class:ArgumentCaptor 103 * Use it to capture the variable arguments. This method <b>must be used inside of verification</b>.
150 * verify(mock, times(2)).doSomething(peopleCaptor.capture());
|
/external/opencv/otherlibs/highgui/ |
cvcap_socket.cpp | 47 // capture video from a socket connection 183 LOGV("Done closing Capture Socket"); 213 LOGV("You haven't opened the socket capture yet!"); 296 CVCapture_Socket* capture = new CVCapture_Socket; local 297 if ( capture-> open(address, port, width, height) ) 298 return capture; 300 delete capture;
|
/frameworks/base/core/java/android/hardware/camera2/ |
CaptureRequest.java | 38 * <p>An immutable package of settings and outputs needed to capture a single 41 * <p>Contains the configuration for the capture hardware (sensor, lens, flash), 44 * capture.</p> 49 * <p>CaptureRequests are given to {@link CameraCaptureSession#capture} or 50 * {@link CameraCaptureSession#setRepeatingRequest} to capture images from a camera.</p> 60 * high-resolution still capture would also include a Surface from a ImageReader 63 * <p>A reprocess capture request allows a previously-captured image from the camera device to be 65 * {@link CameraDevice#createReprocessCaptureRequest}, and used with a reprocessable capture session 68 * @see CameraCaptureSession#capture 79 * A {@code Key} is used to do capture request field lookups wit [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/its/ |
ItsService.java | 97 // Timeout to wait for a capture result after the capture buffer has arrived, in ms. 186 void onCaptureAvailable(Image capture); 232 // Create a thread to receive capture results and process them. [all...] |
/packages/apps/Camera2/src/com/android/camera/one/v2/ |
OneCameraZslImpl.java | 89 * TODO: Determine what the maximum number of full YUV capture frames is. 119 * high-quality still capture. Unlike other requests, such as the 166 /** The Camera2 API capture session currently active. */ 250 // We should only capture the image if it hasn't been captured 425 // We will only capture images from the zsl ring-buffer which satisfy 488 // This constraint lets us capture images which have been explicitly 511 // already, capture the next good image. 517 // We must issue a request for a single capture using the 527 // 3. Capture the next appropriate image, which should be 557 // do not need to send a new capture request [all...] |
ImageCaptureManager.java | 52 * store the results of capture requests (both {@link Image}s and 62 * Callback to listen for changes to the ability to capture an existing 67 * Called whenever the ability to capture an existing image from the 72 * @param capturePossible true if capture is more-likely to be possible, 73 * false if capture is less-likely to be possible. 118 * Callback for placing constraints on which images to capture. See 125 * image capture. For example, a constraint may return false if 127 * capture. 293 * there is no pending capture request. 300 * there is no pending capture request [all...] |
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/ |
DngCreatorTest.java | 89 * Test basic raw capture and DNG saving functionality for each of the available cameras. 92 * For each camera, capture a single RAW16 image at the first capture size reported for 120 // Create capture image reader 161 * Test basic raw capture and DNG saving with a thumbnail, rotation, usercomment, and GPS tags 165 * For each camera, capture a single RAW16 image at the first capture size reported for 201 // Create capture image reader 262 * Test basic RAW capture, and ensure that the rendered RAW output is similar to the JPEG 311 // Create raw image reader and capture listene [all...] |
/external/clang/test/Parser/ |
cxx0x-lambda-expressions.cpp | 13 [+] {}; // expected-error {{expected variable name or 'this' in lambda capture list}} 14 [foo+] {}; // expected-error {{expected ',' or ']' in lambda capture list}} 17 [&,] {}; // expected-error {{expected variable name or 'this' in lambda capture list}} 18 [=,] {}; // expected-error {{expected variable name or 'this' in lambda capture list}} 104 void m (T x =[0); // expected-error{{expected variable name or 'this' in lambda capture list}}
|
/frameworks/base/media/java/android/media/projection/ |
MediaProjection.java | 36 * A token granting applications the ability to capture screen contents and/or 41 * A screen capture session can be started through {@link 43 * capture screen contents, but not system audio. 111 * Creates a {@link android.hardware.display.VirtualDisplay} to capture the 142 * Creates an AudioRecord to capture audio played back by the system.
|
/frameworks/base/tests/TileBenchmark/res/values/ |
strings.xml | 31 <!-- ToggleButton label when pressing starts capture [CHAR LIMIT=15] --> 32 <string name="capture_start">Start Capture</string> 33 <!-- ToggleButton label when pressing stops capture [CHAR LIMIT=15] --> 34 <string name="capture_stop">Stop Capture</string> 55 <!-- Drop down menu entry - manually navigate the page(s), hit 'capture'
|
/hardware/qcom/camera/QCamera2/HAL/ |
QCameraStateMachine.h | 71 QCAMERA_SM_EVT_TAKE_PICTURE, // take picutre (zsl, regualr capture, live snapshot 88 QCAMERA_SM_EVT_STOP_CAPTURE_CHANNEL, // stop capture channel 153 QCAMERA_INTERNAL_EVT_ZSL_CAPTURE_DONE, // ZSL capture done event 184 bool isCaptureRunning(); // check if image capture is running 185 bool isNonZSLCaptureRunning(); // check if image capture is running in non ZSL mode
|
/packages/apps/Camera2/src/com/android/camera/burst/ |
BurstCaptureCommand.java | 53 * Template to use for the burst capture. 71 * Initializes a new burst capture command. 75 * capture 86 * once burst capture is complete 142 // frame capture result.
|
/packages/apps/Camera2/src/com/android/camera/stats/ |
CaptureSessionStatsCollector.java | 18 * Accumulates statistics during the lifecycle of a Capture Session. Since a 27 /** Time when capture is completed in SystemClock.elapsedRealtime(). */ 72 * @param captureResult CaptureResults to be queried for capture event information 89 * Accumulate the information that should be available at the time of the Capture Request. 153 * Send capture event to the UsageStatistics singleton.
|
/developers/build/prebuilts/gradle/Camera2Raw/Application/src/main/java/com/example/android/camera2raw/ |
Camera2RawFragment.java | 86 * A fragment that demonstrates use of the Camera2 API to capture RAW and JPEG photos. 94 * {@link #takePicture()} initiates a pre-capture sequence that triggers the camera's built-in 98 * When the pre-capture sequence has finished, a {@link CaptureRequest} with a monotonically 100 * the camera to begin the JPEG and RAW capture sequence, and an 130 * Timeout for the pre-capture sequence. 216 * across the {@link CameraCaptureSession} capture callbacks. 286 * Number of pending user requests to capture a photo. 313 * Timer to use with pre-capture sequence to ensure a timely capture if 3A convergence is taking 399 * pre-capture sequence [all...] |
/development/samples/browseable/Camera2Raw/src/com.example.android.camera2raw/ |
Camera2RawFragment.java | 86 * A fragment that demonstrates use of the Camera2 API to capture RAW and JPEG photos. 94 * {@link #takePicture()} initiates a pre-capture sequence that triggers the camera's built-in 98 * When the pre-capture sequence has finished, a {@link CaptureRequest} with a monotonically 100 * the camera to begin the JPEG and RAW capture sequence, and an 130 * Timeout for the pre-capture sequence. 216 * across the {@link CameraCaptureSession} capture callbacks. 286 * Number of pending user requests to capture a photo. 313 * Timer to use with pre-capture sequence to ensure a timely capture if 3A convergence is taking 399 * pre-capture sequence [all...] |
/cts/apps/CameraITS/tests/scene1/ |
test_burst_sameness_manual.py | 28 capture settings. 40 # Capture at the smallest resolution. 50 # Capture bursts of YUV shots.
|
/developers/build/prebuilts/gradle/Camera2Raw/ |
README.md | 5 This sample demonstrates using the Camera2 API to capture a JPEG and RAW sensor frame. 7 run auto-focus, auto-exposure metering, and auto-white-balance; capture a JPEG and 14 The [Camera2 API][1] allows users to capture RAW images, i.e. unprocessed pixel data
|
/device/htc/flounder/ |
media_profiles.xml | 183 does not capture audio 200 does not capture audio 217 does not capture audio 234 does not capture audio 251 does not capture audio 268 does not capture audio 285 does not capture audio 390 does not capture audio 407 does not capture audio 424 does not capture audi [all...] |
/external/kernel-headers/original/uapi/linux/ |
pps.h | 80 #define PPS_CAPTUREASSERT 0x01 /* capture assert events */ 81 #define PPS_CAPTURECLEAR 0x02 /* capture clear events */ 82 #define PPS_CAPTUREBOTH 0x03 /* capture assert and clear events */
|
/external/llvm/test/CodeGen/X86/ |
musttail.ll | 35 call void @capture(i8* %a) 40 declare void @capture(i8*) 84 call void @capture(i8* %a)
|
/external/strace/debian/ |
control | 20 isolation, sanity checking and attempting to capture race conditions. 37 isolation, sanity checking and attempting to capture race conditions. 53 isolation, sanity checking and attempting to capture race conditions.
|