/cts/apps/CtsVerifier/src/com/android/cts/verifier/streamquality/ |
StreamingVideoActivity.java | 45 * Tests for verifying the quality of streaming videos. Plays streams of different formats over 216 private void addStreamToTests(ArrayTestListAdapter streams, Stream stream) { 219 streams.add(TestListItem.newTest(stream.name, PlayVideoActivity.getTestId(stream.code),
|
/device/lge/mako/camera/QCamera/stack/mm-camera-interface/src/ |
mm_camera_channel.c | 146 if (handler == ch_obj->streams[i].my_hdl) { 147 s_obj = &ch_obj->streams[i]; 519 /* check if all streams are stopped 523 if (MM_STREAM_STATE_ACTIVE_STREAM_ON == my_obj->streams[i].state || 524 MM_STREAM_STATE_ACTIVE_STREAM_OFF == my_obj->streams[i].state) { 652 if (MM_STREAM_STATE_NOTUSED == my_obj->streams[idx].state) { 653 stream_obj = &my_obj->streams[idx]; 658 CDBG_ERROR("%s: streams reach max, no more stream allowed to add", __func__); 745 /* first check if all streams to be bundled are valid */ 766 /* set bundled flag to streams */ [all...] |
/external/chromium_org/third_party/libjingle/source/talk/examples/call/ |
callclient.cc | 774 data->streams(), "", streamid, &stream)) { 972 const std::vector<cricket::StreamParams>* streams = local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/session/media/ |
channel.cc | [all...] |
mediasession.h | 110 // All streams with the same sync_label will get the same CNAME. 153 typedef std::vector<Stream> Streams; 154 Streams streams; member in struct:cricket::MediaSessionOptions 227 // True iff the client supports multiple streams. 230 const StreamParamsVec& streams() const { function in class:cricket::MediaContentDescription 241 // Legacy streams have an ssrc, but nothing else. 251 // This can be used to set the CNAME of legacy streams.
|
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/ |
GrammarSerializerFoo.java | 50 protected Stack streams = new Stack(); field in class:GrammarSerializerFoo 130 //streams.push(out); 138 //out = (DataOutputStream)streams.pop(); // restore previous stream
|
/external/chromium_org/media/audio/mac/ |
audio_manager_mac.cc | 29 // Maximum number of output streams that can be open simultaneously. 32 // Define bounds for for low-latency input and output streams. 215 void StopStreams(std::list<T*>* streams) { 216 for (typename std::list<T*>::iterator it = streams->begin(); 217 it != streams->end(); 223 streams->clear(); 660 // Allow pass through buffer sizes. If concurrent input and output streams 716 // streams still running at shutdown. 719 // by stopping the streams. Note: The streams are leaked since proces [all...] |
/external/chromium_org/media/filters/ |
audio_file_reader.cc | 43 AVCodecContext* c = format_context->streams[i]->codec; 250 // Skip packets from other streams.
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/ |
zero_copy_stream_impl.h | 297 // A ZeroCopyInputStream which reads from several other streams in sequence. 299 // and read errors in the underlying streams, so it assumes any errors mean 300 // end-of-stream. So, if the underlying streams fail for any other reason, 302 // not use ConcatenatingInputStream on streams that might produce read errors 306 // All streams passed in as well as the array itself must remain valid 308 ConcatenatingInputStream(ZeroCopyInputStream* const streams[], int count); 319 // As streams are retired, streams_ is incremented and count_ is 323 int64 bytes_retired_; // Bytes read from previous streams.
|
zero_copy_stream_impl.cc | 352 ZeroCopyInputStream* const streams[], int count) 353 : streams_(streams), stream_count_(count), bytes_retired_(0) { 369 // No more streams.
|
/external/protobuf/src/google/protobuf/io/ |
zero_copy_stream_impl.h | 297 // A ZeroCopyInputStream which reads from several other streams in sequence. 299 // and read errors in the underlying streams, so it assumes any errors mean 300 // end-of-stream. So, if the underlying streams fail for any other reason, 302 // not use ConcatenatingInputStream on streams that might produce read errors 306 // All streams passed in as well as the array itself must remain valid 308 ConcatenatingInputStream(ZeroCopyInputStream* const streams[], int count); 319 // As streams are retired, streams_ is incremented and count_ is 323 int64 bytes_retired_; // Bytes read from previous streams.
|
zero_copy_stream_impl.cc | 351 ZeroCopyInputStream* const streams[], int count) 352 : streams_(streams), stream_count_(count), bytes_retired_(0) { 368 // No more streams.
|
zero_copy_stream_unittest.cc | 663 // Now split it up into multiple streams of varying sizes. 676 ZeroCopyInputStream* streams[] = local 680 ConcatenatingInputStream input(streams, GOOGLE_ARRAYSIZE(streams));
|
/ndk/tests/device/test-libc++-shared-full/jni/ |
Android.mk | [all...] |
/ndk/tests/device/test-libc++-static-full/jni/ |
Android.mk | [all...] |
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
exceptions.py | 85 # The current Token when an error occurred. Since not all streams 116 from antlr3.streams import TokenStream, CharStream 180 from antlr3.streams import TokenStream
|
/libcore/luni/src/main/java/java/util/ |
ResourceBundle.java | 909 InputStream streams = null; local [all...] |
/device/moto/shamu/camera/QCamera/stack/mm-camera-interface/src/ |
mm_camera_channel.c | 161 if (handler == ch_obj->streams[i].my_hdl) { 162 s_obj = &ch_obj->streams[i]; 545 /* check if all streams are stopped 549 if (MM_STREAM_STATE_ACTIVE_STREAM_ON == my_obj->streams[i].state || 550 MM_STREAM_STATE_ACTIVE_STREAM_OFF == my_obj->streams[i].state) { 772 if (MM_STREAM_STATE_NOTUSED == my_obj->streams[idx].state) { 773 stream_obj = &my_obj->streams[idx]; 778 CDBG_ERROR("%s: streams reach max, no more stream allowed to add", __func__); [all...] |
/external/chromium_org/content/browser/renderer_host/media/ |
media_stream_manager.cc | 1082 const MediaStreamType streams[] = { request->audio_type(), local [all...] |
/external/chromium_org/third_party/opus/src/src/ |
opus_demo.c | 202 int streams, coupled_streams; 204 return (OpusEncoder *)opus_multistream_surround_encoder_create(Fs, channels, 1, &streams, &coupled_streams, mapping, application, error); 208 int streams; 211 streams = 1; 213 return (OpusDecoder *)opus_multistream_decoder_create(Fs, channels, streams, coupled_streams, mapping, error); [all...] |
/external/libopus/src/ |
opus_demo.c | 202 int streams, coupled_streams; 204 return (OpusEncoder *)opus_multistream_surround_encoder_create(Fs, channels, 1, &streams, &coupled_streams, mapping, application, error); 208 int streams; 211 streams = 1; 213 return (OpusDecoder *)opus_multistream_decoder_create(Fs, channels, streams, coupled_streams, mapping, error); [all...] |
/frameworks/base/core/java/android/content/ |
Intent.java | 7472 final ArrayList<Uri> streams = getParcelableArrayListExtra(EXTRA_STREAM); local 7552 final ArrayList<Uri> streams = getParcelableArrayListExtra(EXTRA_STREAM); local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/ |
mediastreamsignaling_unittest.cc | 196 ASSERT_GE(options.streams.size(), stream_index + audio_tracks.size()); 199 EXPECT_EQ(options.streams[stream_index].sync_label, stream->label()); 200 EXPECT_EQ(options.streams[stream_index++].id, audio->id()); 204 ASSERT_GE(options.streams.size(), stream_index + video_tracks.size()); 207 EXPECT_EQ(options.streams[stream_index].sync_label, stream->label()); 208 EXPECT_EQ(options.streams[stream_index++].id, video->id()); 467 // Create a collection of streams. [all...] |
/external/lzma/CS/7zip/ |
ICoder.cs | 40 /// Codes streams.
|
/frameworks/av/services/camera/libcameraservice/device3/ |
Camera3Device.cpp | 607 CLOGE("No streams configured"); 612 SET_ERR_L("Can't set up streams: %s (%d)", strerror(-res), res); 617 CLOGE("No streams configured"); 682 ALOGV("%s: Stopping activity to reconfigure streams", __FUNCTION__); 685 SET_ERR_L("Can't pause captures to reconfigure streams!"); 711 ALOGV("%s: Restarting activity to reconfigure streams", __FUNCTION__); 753 ALOGV("%s: Stopping activity to reconfigure streams", __FUNCTION__); 756 SET_ERR_L("Can't pause captures to reconfigure streams!"); 791 ALOGV("%s: Restarting activity to reconfigure streams", __FUNCTION__); 828 ALOGV("%s: Stopping activity to reconfigure streams", __FUNCTION__) 1392 camera_metadata_entry_t streams = local 1457 Vector<camera3_stream_t*> streams; local [all...] |