Searched defs:streams (Results 1 - 25 of 60) sorted by relevance

123

/external/chromium_org/net/quic/
H A Dquic_client_session_test.cc100 std::vector<QuicReliableClientStream*> streams; local
104 streams.push_back(stream);
109 session_.CloseStream(streams[0]->id());
116 std::vector<QuicReliableClientStream*> streams; local
120 streams.push_back(stream);
131 session_.CloseStream(streams[0]->id());
141 // streams.
H A Dquic_session.h5 // A QuicSession, which demuxes a single connection to individual streams.
84 // streams.
94 // Called by streams when they want to write data to the peer.
122 // Called by streams when they want to close the stream in both directions.
127 // Called when the session wants to go away and not accept any new streams.
181 // Returns the number of currently open streams, including those which have
183 // streams.
220 // stream. Returns NULL if max streams have already been opened.
240 // In this case, it deletes streams given that it's safe to do so (no other
241 // operations are being done on the streams a
244 base::hash_map<QuicStreamId, QuicDataStream*>* streams() { function in class:net::QuicSession
248 const base::hash_map<QuicStreamId, QuicDataStream*>* streams() const { function in class:net::QuicSession
[all...]
/external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
H A Dstreamcollection.h48 StreamCollection* streams) {
50 new rtc::RefCountedObject<StreamCollection>(streams);
47 Create( StreamCollection* streams) argument
H A Dwebrtcsessiondescriptionfactory.cc59 // Checks if each Stream within the |streams| has unique id.
60 static bool ValidStreams(const MediaSessionOptions::Streams& streams) { argument
61 MediaSessionOptions::Streams sorted_streams = streams;
188 if (!ValidStreams(session_options.streams)) {
189 error += " called with invalid media streams.";
242 if (!ValidStreams(options.streams)) {
243 error += " called with invalid media streams.";
248 // RTP data channel is handled in MediaSessionOptions::AddStream. SCTP streams
/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3recognizersharedstate.h191 /** Input stream stack, which allows the C programmer to switch input streams
195 pANTLR3_STACK streams; member in struct:ANTLR3_RECOGNIZER_SHARED_STATE_struct
197 /// A stack of token/tree rewrite streams that are available for use
200 /// allocate and deallocate rewtire streams on entry and exit. As
202 /// of the maximum number of allocated streams, which instead of
204 /// reuse. The streams are then all finally freed when this stack
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DGrammarSerializerFoo.java50 protected Stack streams = new Stack(); field in class:GrammarSerializerFoo
130 //streams.push(out);
138 //out = (DataOutputStream)streams.pop(); // restore previous stream
/external/chromium_org/net/spdy/
H A Dspdy_write_queue_unittest.cc189 // RemovePendingWritesForStream() on one of the streams. No dequeued
223 // those streams without a stream id, or with a stream_id after that
236 base::WeakPtr<SpdyStream> streams[] = { local
243 streams[i % arraysize(streams)]);
248 for (int i = 0; i < 100; i += arraysize(streams)) {
/external/chromium_org/third_party/webrtc/base/
H A Ddiskcache.h26 // DiskCache - An LRU cache of streams, stored on disk.
28 // Streams are identified by a unique resource id. Multiple streams can be
30 // resources are flushed from the cache, all streams associated with those
67 size_t streams; member in struct:rtc::DiskCache::Entry
/external/sonivox/arm-fm-22k/lib_src/
H A Deas_data.h113 S_EAS_STREAM streams[MAX_NUMBER_STREAMS]; member in struct:s_eas_data_tag
H A Deas_miditypes.h101 S_SMF_STREAM *streams; /* pointer to individual streams in file */ member in struct:s_smf_data_tag
108 EAS_U16 numStreams; /* actual number of streams */
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_data.h113 S_EAS_STREAM streams[MAX_NUMBER_STREAMS]; member in struct:s_eas_data_tag
H A Deas_miditypes.h101 S_SMF_STREAM *streams; /* pointer to individual streams in file */ member in struct:s_smf_data_tag
108 EAS_U16 numStreams; /* actual number of streams */
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_data.h115 S_EAS_STREAM streams[MAX_NUMBER_STREAMS]; member in struct:s_eas_data_tag
H A Deas_miditypes.h101 S_SMF_STREAM *streams; /* pointer to individual streams in file */ member in struct:s_smf_data_tag
108 EAS_U16 numStreams; /* actual number of streams */
/external/chromium_org/media/base/
H A Ddemuxer_perftest.cc63 // Returns true when all streams have reached end of stream.
67 const Streams& streams() { return streams_; } function in class:media::StreamReader
151 // Ignore streams at EOS.
/external/chromium_org/third_party/libjingle/source/talk/media/base/
H A Dstreamparams.cc152 bool GetStream(const StreamParamsVec& streams, argument
155 for (StreamParamsVec::const_iterator stream = streams.begin();
156 stream != streams.end(); ++stream) {
167 bool GetStreamBySsrc(const StreamParamsVec& streams, uint32 ssrc, argument
169 return GetStream(streams, StreamSelector(ssrc), stream_out);
172 bool GetStreamByIds(const StreamParamsVec& streams, argument
176 return GetStream(streams, StreamSelector(groupid, id), stream_out);
179 bool RemoveStream(StreamParamsVec* streams, argument
182 for (StreamParamsVec::iterator stream = streams->begin();
183 stream != streams
194 RemoveStreamBySsrc(StreamParamsVec* streams, uint32 ssrc) argument
198 RemoveStreamByIds(StreamParamsVec* streams, const std::string& groupid, const std::string& id) argument
[all...]
/external/chromium_org/third_party/libjingle/source/talk/session/media/
H A Dmediamessages.cc45 // NOTE: There is no check here for duplicate streams, so check before
47 void AddStream(std::vector<StreamParams>* streams, const StreamParams& stream) { argument
48 streams->push_back(stream);
108 void MediaStreams::CopyFrom(const MediaStreams& streams) { argument
109 audio_ = streams.audio_;
110 video_ = streams.video_;
111 data_ = streams.data_;
209 std::vector<StreamParams>* streams,
218 streams->push_back(StreamParams::CreateLegacy(ssrc));
258 std::vector<StreamParams>* streams,
208 ParseSsrcAsLegacyStream(const buzz::XmlElement* desc_elem, std::vector<StreamParams>* streams, ParseError* error) argument
257 ParseJingleStream(const buzz::XmlElement* stream_elem, std::vector<StreamParams>* streams, ParseError* error) argument
301 ParseJingleStreams(const buzz::XmlElement* desc_elem, std::vector<StreamParams>* streams, ParseError* error) argument
361 WriteJingleStreams(const std::vector<StreamParams>& streams, buzz::XmlElement* parent_elem) argument
[all...]
/external/chromium_org/third_party/opus/src/src/
H A Dopus_multistream_decoder.c67 int streams,
77 if ((channels>255) || (channels<1) || (coupled_streams>streams) ||
78 (coupled_streams+streams>255) || (streams<1) || (coupled_streams<0))
82 st->layout.nb_streams = streams;
113 int streams,
121 if ((channels>255) || (channels<1) || (coupled_streams>streams) ||
122 (coupled_streams+streams>255) || (streams<1) || (coupled_streams<0))
128 st = (OpusMSDecoder *)opus_alloc(opus_multistream_decoder_get_size(streams, coupled_stream
63 opus_multistream_decoder_init( OpusMSDecoder *st, opus_int32 Fs, int channels, int streams, int coupled_streams, const unsigned char *mapping ) argument
110 opus_multistream_decoder_create( opus_int32 Fs, int channels, int streams, int coupled_streams, const unsigned char *mapping, int *error ) argument
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream_impl.cc352 ZeroCopyInputStream* const streams[], int count)
353 : streams_(streams), stream_count_(count), bytes_retired_(0) {
369 // No more streams.
351 ConcatenatingInputStream( ZeroCopyInputStream* const streams[], int count) argument
/external/chromium_org/third_party/webrtc/
H A Dconfig.h120 std::vector<VideoStream> streams; member in struct:webrtc::VideoEncoderConfig
/external/chromium_org/third_party/webrtc/video/
H A Dvideo_send_stream.cc300 const std::vector<VideoStream>& streams = config.streams; local
301 assert(!streams.empty());
302 assert(config_.rtp.ssrcs.size() >= streams.size());
334 static_cast<unsigned char>(streams.back().temporal_layers.size());
346 static_cast<unsigned char>(streams.size());
347 video_codec.minBitrate = streams[0].min_bitrate_bps / 1000;
348 assert(streams.size() <= kMaxSimulcastStreams);
349 for (size_t i = 0; i < streams.size(); ++i) {
351 assert(streams[
[all...]
/external/chromium_org/third_party/webrtc/voice_engine/test/auto_test/standard/
H A Dmixing_test.cc46 // amplitude of |input_value|. The local streams manifest as "anonymous"
53 // |num_remote_streams_using_mono| of the remote streams use mono, with the
78 TEST_LOG("Playing %d local streams.\n", num_local_streams);
87 TEST_LOG("Playing %d remote streams.\n", num_remote_streams);
144 // Start up local streams ("anonymous" participants).
145 void StartLocalStreams(const std::vector<int>& streams) { argument
146 for (size_t i = 0; i < streams.size(); ++i) {
147 EXPECT_EQ(0, voe_base_->StartPlayout(streams[i]));
148 EXPECT_EQ(0, voe_file_->StartPlayingFileLocally(streams[i],
153 void StopLocalStreams(const std::vector<int>& streams) { argument
161 StartRemoteStreams(const std::vector<int>& streams, int num_remote_streams_using_mono, const CodecInst& codec_inst) argument
193 StopRemoteStreams(const std::vector<int>& streams) argument
[all...]
/external/libopus/src/
H A Dopus_multistream_decoder.c67 int streams,
77 if ((channels>255) || (channels<1) || (coupled_streams>streams) ||
78 (coupled_streams+streams>255) || (streams<1) || (coupled_streams<0))
82 st->layout.nb_streams = streams;
113 int streams,
121 if ((channels>255) || (channels<1) || (coupled_streams>streams) ||
122 (coupled_streams+streams>255) || (streams<1) || (coupled_streams<0))
128 st = (OpusMSDecoder *)opus_alloc(opus_multistream_decoder_get_size(streams, coupled_stream
63 opus_multistream_decoder_init( OpusMSDecoder *st, opus_int32 Fs, int channels, int streams, int coupled_streams, const unsigned char *mapping ) argument
110 opus_multistream_decoder_create( opus_int32 Fs, int channels, int streams, int coupled_streams, const unsigned char *mapping, int *error ) argument
[all...]
/external/protobuf/src/google/protobuf/io/
H A Dzero_copy_stream_impl.cc351 ZeroCopyInputStream* const streams[], int count)
352 : streams_(streams), stream_count_(count), bytes_retired_(0) {
368 // No more streams.
350 ConcatenatingInputStream( ZeroCopyInputStream* const streams[], int count) argument
H A Dzero_copy_stream_unittest.cc663 // Now split it up into multiple streams of varying sizes.
676 ZeroCopyInputStream* streams[] = local
680 ConcatenatingInputStream input(streams, GOOGLE_ARRAYSIZE(streams));

Completed in 7723 milliseconds

123