/frameworks/av/camera/tests/ |
D | ProCameraTests.cpp | 631 int32_t streams[] = { depthStreamId }; in TEST_F() local 633 streams, in TEST_F() 976 int32_t streams[] = { streamId }; in TEST_F() local 977 ASSERT_NO_FATAL_FAILURE(createSubmitRequestForStreams(streams, /*count*/1)); in TEST_F() 1004 int32_t streams[] = { streamId }; in TEST_F() local 1005 ASSERT_NO_FATAL_FAILURE(createSubmitRequestForStreams(streams, /*count*/1, in TEST_F() 1051 int32_t streams[] = { streamId, depthStreamId }; in TEST_F() local 1052 ASSERT_NO_FATAL_FAILURE(createSubmitRequestForStreams(streams, /*count*/2, in TEST_F() 1130 int32_t streams[] = { streamId }; in TEST_F() local 1131 ASSERT_NO_FATAL_FAILURE(createSubmitRequestForStreams(streams, /*count*/1, in TEST_F() [all …]
|
/frameworks/av/services/camera/libcameraservice/api1/client2/ |
D | StreamingProcessor.h | 135 static bool isStreamActive(const Vector<int32_t> &streams,
|
D | StreamingProcessor.cpp | 833 bool StreamingProcessor::isStreamActive(const Vector<int32_t> &streams, in isStreamActive() argument 835 for (size_t i = 0; i < streams.size(); i++) { in isStreamActive() 836 if (streams[i] == recordingStreamId) { in isStreamActive()
|
/frameworks/av/services/camera/libcameraservice/device3/ |
D | Camera3Device.cpp | 1198 camera_metadata_entry_t streams = in createCaptureRequest() local 1200 if (streams.count == 0) { in createCaptureRequest() 1205 for (size_t i = 0; i < streams.count; i++) { in createCaptureRequest() 1206 int idx = mOutputStreams.indexOfKey(streams.data.i32[i]); in createCaptureRequest() 1209 streams.data.u8[i]); in createCaptureRequest() 1254 Vector<camera3_stream_t*> streams; in configureStreamsLocked() local 1255 streams.setCapacity(config.num_streams); in configureStreamsLocked() 1264 streams.add(inputStream); in configureStreamsLocked() 1283 streams.add(outputStream); in configureStreamsLocked() 1286 config.streams = streams.editArray(); in configureStreamsLocked()
|
/frameworks/base/docs/html/google/play/ |
D | dist.jd | 49 <p>Protect your revenue streams and integrate policies for usage into your app.
|
/frameworks/base/tests/AccessoryDisplay/ |
D | README | 36 an encoder and streams the output to the sink over USB. Then
|
/frameworks/base/core/java/android/content/ |
D | Intent.java | 7251 final ArrayList<Uri> streams = getParcelableArrayListExtra(EXTRA_STREAM); in migrateExtraStreamToClipData() local 7255 if (streams != null) { in migrateExtraStreamToClipData() 7256 num = streams.size(); in migrateExtraStreamToClipData() 7275 makeClipItem(streams, texts, htmlTexts, 0)); in migrateExtraStreamToClipData() 7278 clipData.addItem(makeClipItem(streams, texts, htmlTexts, i)); in migrateExtraStreamToClipData() 7292 private static ClipData.Item makeClipItem(ArrayList<Uri> streams, ArrayList<CharSequence> texts, in makeClipItem() argument 7294 Uri uri = streams != null ? streams.get(which) : null; in makeClipItem()
|
/frameworks/base/docs/html/google/ |
D | index.jd | 28 build new revenue streams, manage app distribution,
|
/frameworks/base/docs/html/google/gcm/ |
D | ccs.jd | 96 xmlns:stream="http://etherx.jabber.org/streams"/> 99 <pre><str:features xmlns:str="http://etherx.jabber.org/streams">
|
/frameworks/base/docs/html/tools/help/ |
D | index.jd | 49 <dd>Runs on your emulator or device and generates pseudo-random streams of user events such
|
D | monkey.jd | 8 streams of user events such as clicks, touches, or gestures, as well as a number of system-level
|
D | monkeyrunner_concepts.jd | 48 device or emulator and generates pseudo-random streams of user and system events. In comparison,
|
/frameworks/base/docs/html/guide/topics/text/ |
D | copy-paste.jd | 76 <a href="#Streams">Copying data streams</a> 679 Content providers support copying complex data such as database records or file streams. 691 provide file streams. The descriptions assume that you are familiar with the general principles 941 <h3 id="Streams">Copying data streams</h3> 943 You can copy and paste large amounts of text and binary data as streams. The data can have 958 A content provider for data streams provides access to its data with a file descriptor object
|
/frameworks/base/docs/html/training/managing-audio/ |
D | volume-playback.jd | 51 <p>Most of these streams are restricted to system events, so unless your app is a replacement alarm
|
/frameworks/base/docs/html/guide/topics/sensors/ |
D | sensors_environment.jd | 161 android.hardware.Sensor#TYPE_AMBIENT_TEMPERATURE}) you can use these two data streams to calculate
|
/frameworks/base/docs/html/guide/topics/connectivity/ |
D | bluetooth.jd | 478 point, each device can obtain input and output streams and data transfer can 793 <li>Read and write data to the streams with {@link 825 // Get the input and output streams, using temp objects because 826 // member streams are final 870 <p>The constructor acquires the necessary streams and once executed, the thread
|
D | wifip2p.jd | 489 with byte streams. </li>
|
/frameworks/base/docs/html/training/sharing/ |
D | send.jd | 135 handle generic data streams.</li>
|
/frameworks/base/docs/html/guide/topics/connectivity/usb/ |
D | accessory.jd | 399 obtain a file descriptor that you can set up input and output streams to read and write data to 400 descriptor. The streams represent the accessory's input and output bulk endpoints. You should set
|
/frameworks/base/docs/html/tools/support-library/ |
D | features.jd | 232 controlling the routing of media channels and streams from the current device to
|
/frameworks/base/docs/html/about/versions/ |
D | android-3.1.jd | 331 data streams over any available network.</p> 336 <li>{@link android.net.rtp.RtpStream}, the base class of streams that send and
|
D | android-3.1-highlights.jd | 362 transmit or receive data streams over any available network.</p>
|
D | android-3.0.jd | 593 <li><b>Texture support for image streams</b> 826 read and write JSON streams. The new APIs complement the {@link org.json} classes, which manipulate
|
/frameworks/base/media/java/android/media/ |
D | AudioService.java | 612 VolumeStreamState[] streams = mStreamStates = new VolumeStreamState[numStreamTypes]; in createStreamStates() local 615 streams[i] = new VolumeStreamState(System.VOLUME_SETTINGS[mStreamVolumeAlias[i]], i); in createStreamStates()
|
/frameworks/base/docs/html/tools/adk/ |
D | adk.jd | 387 devices. If there is a connected device, it continuously updates the input and output streams
|