/packages/apps/Camera2/src/com/android/camera/captureintent/ |
CaptureIntentSession.java | 45 /** For aggregation of capture information */ 49 /** The capture session manager responsible for this session. */ 65 * @param captureSessionManager the capture session manager responsible for 92 // TODO: Support progress in the future once HDR is enabled for capture intent.
|
/packages/apps/Camera2/src/com/android/camera/remote/ |
RemoteCameraModule.java | 29 * module should trigger a capture and send the result via
|
/packages/apps/Camera2/src/com/android/camera/session/ |
StackSaver.java | 36 * @param captureTimeEpoch the capture time in millis since epoch
|
/packages/apps/Camera2/src/com/android/camera/util/ |
CaptureDataSerializer.java | 43 * Can be used for debugging to output details about Camera2 capture request and 54 * Generate a human-readable string of the given capture request and return 64 * Generate a human-readable string of the given capture request and write 82 Log.e(TAG, "Could not write capture data to file.", ex);
|
/packages/apps/LegacyCamera/jni/ |
mosaic_renderer_jni.h | 11 // will pan across the UI during capture. A value of 0.0 will keep the viewfinder
|
/external/v8/src/arm/ |
regexp-macro-assembler-arm.cc | 25 * - r4 : Temporarily stores the index of capture start after a matching pass 49 * - fp[44] capture array size (may fit multiple sets of matches) 63 * position -1). Used to initialize capture registers to a 229 __ ldr(r0, register_location(start_reg)); // Index of start of capture 230 __ ldr(r1, register_location(start_reg + 1)); // Index of end of capture 231 __ sub(r1, r1, r0, SetCC); // Length of capture. 233 // If length is zero, either the capture is empty or it is not participating. 246 // r0 - offset of start of capture 247 // r1 - length of capture 252 // r0 - Address of start of capture [all...] |
/external/v8/src/mips/ |
regexp-macro-assembler-mips.cc | 24 * - t7 : Temporarily stores the index of capture start after a matching pass 48 * - fp[52] capture array size (may fit multiple sets of matches) 62 * position -1). Used to initialize capture registers to a 232 __ lw(a0, register_location(start_reg)); // Index of start of capture. 233 __ lw(a1, register_location(start_reg + 1)); // Index of end of capture. 234 __ Subu(a1, a1, a0); // Length of capture. 236 // If length is zero, either the capture is empty or it is not participating. 249 // a0 - offset of start of capture. 250 // a1 - length of capture. 255 // a0 - Address of start of capture [all...] |
/frameworks/base/core/java/android/hardware/camera2/ |
CameraMetadata.java | 37 * characteristics or capture results, and for setting camera request 497 * relative to the sensor's maximum capture rate (at that resolution).</li> 506 * will be present in capture results, other controls in reprocess 580 * are also guaranteed to be <code>true</code> so burst capture with these two locks ON yields 605 * relative to the sensor's maximum capture rate (at that resolution).</li> 612 * in capture results. The reprocess requests are from the original capture results that 659 * <p>Generally, depth output operates at a slower frame rate than standard color capture, [all...] |
/hardware/qcom/audio/legacy/alsa_sound/ |
ALSAMixer.cpp | 63 {dev, "alsa.mixer.capture." name, in, NULL}\ 68 ALSA_PROP(AudioSystem::DEVICE_OUT_ALL, "master", "PCM", "Capture"); 72 ALSA_PROP(AudioSystem::DEVICE_OUT_EARPIECE, "earpiece", "Earpiece", "Capture"), 74 ALSA_PROP(AudioSystem::DEVICE_OUT_WIRED_HEADSET, "headset", "Headphone", "Capture"), 75 ALSA_PROP(AudioSystem::DEVICE_OUT_BLUETOOTH_SCO, "bluetooth.sco", "Bluetooth", "Bluetooth Capture"), 76 ALSA_PROP(AudioSystem::DEVICE_OUT_BLUETOOTH_A2DP, "bluetooth.a2dp", "Bluetooth A2DP", "Bluetooth A2DP Capture"), 363 ALOGE("Unable to %s capture mixer switch %s",
|
/pdk/apps/TestingCamera2/src/com/android/testingcamera2/ |
CameraControlPane.java | 262 * Send single capture to camera device. 265 * @return true if capture sent successfully 267 public boolean capture(CaptureRequest request) { method in class:CameraControlPane 270 mCurrentCaptureSession.capture(request, mResultListener, null); 273 TLog.e("Unable to capture for camera %s.", e, mCurrentCameraId); 495 * This method is called when the session starts actively processing capture requests. 497 * <p>If capture requests are submitted prior to {@link #onConfigured} being called, 501 * <p>If the session runs out of capture requests to process and calls {@link #onReady}, 502 * then this callback will be invoked again once new requests are submitted for capture.</p> 518 * However, any in-progress capture requests submitted to the session will be complete [all...] |
/device/generic/goldfish/camera/fake-pipeline2/ |
Sensor.h | 28 * captured. The stages are 1) configure, 2) capture, and 3) readout. During 52 * Frame 0| :configure : capture : readout : : : 59 * Frame 1| : configure capture readout : : 66 * Frame 2| : : configure capture readout: 135 // capture started. May return immediately if a new frame has been pushed
|
/frameworks/base/cmds/wm/src/com/android/commands/wm/ |
Wm.java | 57 " wm screen-capture [userId] [true|false]\n" + 68 "wm screen-capture: enable/disable screen capture.\n" + 94 } else if (op.equals("screen-capture")) { 122 System.err.println("Error: Can't set screen capture " + e);
|
/frameworks/base/core/java/android/hardware/camera2/impl/ |
CameraConstrainedHighSpeedCaptureSessionImpl.java | 75 throw new IllegalArgumentException("Input capture request must not be null"); 98 // Overwrite the capture intent to make sure a good value is set. 177 public int capture(CaptureRequest request, CaptureCallback listener, Handler handler) method in class:CameraConstrainedHighSpeedCaptureSessionImpl 189 "a constrained high speed capture session"); 207 "a constrained high speed capture session");
|
/frameworks/ex/camera2/portability/src/com/android/ex/camera2/portability/ |
AndroidCamera2AgentImpl.java | 398 // response to our latest request is when our one-time capture progresses. 441 // Send a one-time capture to trigger the camera driver to lock focus. 448 mSession.capture( 470 // Send a one-time capture to trigger the camera driver to resume scanning. 477 mSession.capture( 525 // Only set the JPEG capture orientation if requested to do so; otherwise, 526 // capture in the sensor's physical orientation. (e.g., JPEG rotation is 559 // perform autoexposure convergence automatically upon capture. 564 // significant capture time by not forcing a recalculation. 565 Log.i(TAG, "Skipping pre-capture autoexposure convergence") [all...] |
/external/clang/lib/CodeGen/ |
CGBlocks.cpp | 190 /// A chunk of data that we actually have to capture in the block. 195 const BlockDecl::Capture *Capture; // null for 'this' 200 const BlockDecl::Capture *capture, 203 Capture(capture), Type(type) {} 207 if (!Capture) 210 info.Captures[Capture->getVariable()] 211 = CGBlockInfo::Capture::makeIndex(index) 605 CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local 762 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local 1004 const CGBlockInfo::Capture &capture = BlockInfo->getCapture(variable); local 1201 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local 1245 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local 1354 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local 1525 const CGBlockInfo::Capture &capture = blockInfo.getCapture(variable); local [all...] |
/cts/apps/CtsVerifier/src/com/android/cts/verifier/managedprovisioning/ |
ByodHelperActivity.java | 50 * video capture functionality. 65 // Primage -> managed intent: request to capture and check an image 67 // Primage -> managed intent: request to capture and check a video 69 // Primage -> managed intent: request to capture and check an audio recording 176 // We need the camera permission to send the image capture intent. 184 Log.e(TAG, "Capture image intent could not be resolved in managed profile."); 190 // We need the camera permission to send the video capture intent. 198 Log.e(TAG, "Capture video intent could not be resolved in managed profile."); 208 Log.e(TAG, "Capture audio intent could not be resolved in managed profile.");
|
/external/icu/icu4c/source/i18n/unicode/ |
uregex.h | 603 * @return the number of capture groups 612 * Get the group number corresponding to a named capture group. 614 * capture groups by number. 620 * @param groupName The capture group name. 635 * Get the group number corresponding to a named capture group. 637 * capture groups by number. 643 * @param groupName The capture group name, 663 * @param groupNum The capture group to extract. Group 0 is the complete 665 * less than or equal to the number of capture groups in 682 * to the beginning of the requested capture group. The capture group length is als [all...] |
/external/libpcap/pcap/ |
pcap.h | 106 * a new magic number for your new capture file format, and, when 122 * capture file format. 138 * gives the FCS length of packets in the capture. 160 * that's not what the underlying packet capture mechanism supplies. 248 #define PCAP_ERROR_NOT_ACTIVATED -3 /* the capture needs to be activated */ 256 #define PCAP_ERROR_PROMISC_PERM_DENIED -11 /* you don't have permission to capture in promiscuous mode */ 301 * provided by the host machine, rather than by the capture device, 317 * capture device; it's synchronized with the system clock. 320 * the capture device; it's not synchronized with the system clock.
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/performance/ |
MediaPlayerPerformance.java | 390 // Test case 1: Capture the memory usage after every 20 h263 playback 405 // Test case 2: Capture the memory usage after every 20 h264 playback 420 // Test case 3: Capture the memory usage after every 20 hevc playback 435 // Test case 4: Capture the memory usage after every 20 mpeg2 playback 450 // Test case 5: Capture the memory usage after every 20 video only recorded 471 // Test case 6: Capture the memory usage after every 20 video only recorded 492 // Test case 7: Capture the memory usage after every 20 video and audio 514 // Test case 8: Capture the memory usage after every 20 audio only recorded 529 // Test case 9: Capture the memory usage after every 20 camera preview
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/sound/ |
emu10k1.h | 125 #define EXTIN_AC97_L 0x00 /* AC'97 capture channel - left */ 126 #define EXTIN_AC97_R 0x01 /* AC'97 capture channel - right */ 151 #define EXTOUT_ADC_CAP_L 0x0a /* ADC Capture buffer - left */ 152 #define EXTOUT_ADC_CAP_R 0x0b /* ADC Capture buffer - right */ 153 #define EXTOUT_MIC_CAP 0x0c /* MIC Capture buffer */ 160 #define A_EXTIN_AC97_L 0x00 /* AC'97 capture channel - left */ 161 #define A_EXTIN_AC97_R 0x01 /* AC'97 capture channel - right */ 192 #define A_EXTOUT_ADC_CAP_L 0x16 /* ADC capture buffer left */ 194 #define A_EXTOUT_MIC_CAP 0x18 /* Mic capture buffer */
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/sound/ |
emu10k1.h | 125 #define EXTIN_AC97_L 0x00 /* AC'97 capture channel - left */ 126 #define EXTIN_AC97_R 0x01 /* AC'97 capture channel - right */ 151 #define EXTOUT_ADC_CAP_L 0x0a /* ADC Capture buffer - left */ 152 #define EXTOUT_ADC_CAP_R 0x0b /* ADC Capture buffer - right */ 153 #define EXTOUT_MIC_CAP 0x0c /* MIC Capture buffer */ 160 #define A_EXTIN_AC97_L 0x00 /* AC'97 capture channel - left */ 161 #define A_EXTIN_AC97_R 0x01 /* AC'97 capture channel - right */ 192 #define A_EXTOUT_ADC_CAP_L 0x16 /* ADC capture buffer left */ 194 #define A_EXTOUT_MIC_CAP 0x18 /* Mic capture buffer */
|
/cts/tests/tests/media/src/android/media/cts/ |
VisualizerTest.java | 77 //Test case 1.0: capture rates 82 assertTrue("insufficient max capture rate", 96 //Test case 1.1: test capture size 101 assertTrue("insufficient min capture size", 103 assertTrue("insufficient min capture size", 106 assertEquals("insufficient min capture size", 109 assertEquals("insufficient min capture size", 123 // 2 - check capture 126 //Test case 2.0: test capture in polling mode 138 // check capture on silenc [all...] |
/developers/samples/android/media/Camera2Raw/Application/src/main/java/com/example/android/camera2raw/ |
Camera2RawFragment.java | 90 * A fragment that demonstrates use of the Camera2 API to capture RAW and JPEG photos. 98 * {@link #takePicture()} initiates a pre-capture sequence that triggers the camera's built-in 102 * When the pre-capture sequence has finished, a {@link CaptureRequest} with a monotonically 104 * the camera to begin the JPEG and RAW capture sequence, and an 150 * Timeout for the pre-capture sequence. 236 * across the {@link CameraCaptureSession} capture callbacks. 306 * Number of pending user requests to capture a photo. 333 * Timer to use with pre-capture sequence to ensure a timely capture if 3A convergence is 419 * pre-capture sequence [all...] |
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/ |
RecordingTest.java | 226 * video for each available video size. The largest still capture size is selected to 227 * capture the JPEG image. The still capture images are validated according to the capture 228 * configuration. The timestamp of capture result before and after video snapshot is also 241 * This test covers burst video snapshot capture. The MediaRecorder is used to record the 242 * video for each available video size. The largest still capture size is selected to 243 * capture the JPEG image. {@value #BURST_VIDEO_SNAPSHOT_NUM} video snapshot requests will be 244 * sent during the test. The still capture images are validated according to the capture [all...] |
RobustnessTest.java | 113 // Setup a capture request and listener 134 session.capture(request.build(), captureListener, mHandler); 172 {JPEG, MAXIMUM}, // No-viewfinder still image capture 175 {YUV, PREVIEW, JPEG, MAXIMUM}, // In-app processing plus still capture. 178 {PRIV, PREVIEW, YUV, PREVIEW, JPEG, MAXIMUM} // Still capture plus in-app processing. 187 {YUV , PREVIEW, YUV, PREVIEW, JPEG, MAXIMUM } // Two-input in-app processing with still capture. 203 {RAW, MAXIMUM }, // No-preview DNG capture. 204 {PRIV, PREVIEW, RAW, MAXIMUM }, // Standard DNG capture. 205 {YUV, PREVIEW, RAW, MAXIMUM }, // In-app processing plus DNG capture. 206 {PRIV, PREVIEW, PRIV, PREVIEW, RAW, MAXIMUM}, // Video recording with DNG capture [all...] |