HomeSort by relevance Sort by last modified time
    Searched defs:streams (Results 1 - 25 of 61) sorted by null

1 2 3

  /external/chromium/net/tools/spdyshark/
packet-spdy.h 44 GArray *streams; member in struct:_spdy_conv_t
  /external/chromium_org/net/quic/
quic_client_session_test.cc 115 std::vector<QuicReliableClientStream*> streams; local
119 streams.push_back(stream);
124 session_.CloseStream(streams[0]->id());
131 std::vector<QuicReliableClientStream*> streams; local
135 streams.push_back(stream);
146 session_.CloseStream(streams[0]->id());
156 // streams.
quic_session.h 5 // A QuicSession, which demuxes a single connection to individual streams.
74 // Called by streams when they want to write data to the peer.
90 // Called by streams when they want to close the stream in both directions.
93 // Called when the session wants to go away and not accept any new streams.
144 // Returns the number of currently open streams, including those which have
186 // stream. Returns NULL if max streams have already been opened.
206 // In this case, it deletes streams given that it's safe to do so (no other
207 // operations are being done on the streams at this time)
210 base::hash_map<QuicStreamId, QuicDataStream*>* streams() { function in class:net::QuicSession
214 const base::hash_map<QuicStreamId, QuicDataStream*>* streams() const function in class:net::QuicSession
    [all...]
quic_stream_factory_test.cc 199 // in streams on different sessions.
295 std::vector<QuicHttpStream*> streams; local
313 streams.push_back(stream.release());
326 streams.front()->Close(false);
334 STLDeleteElements(&streams);
  /external/chromium_org/net/spdy/
spdy_write_queue_unittest.cc 155 // RemovePendingWritesForStream() on one of the streams. No dequeued
189 // those streams without a stream id, or with a stream_id after that
202 base::WeakPtr<SpdyStream> streams[] = { local
209 streams[i % arraysize(streams)]);
214 for (int i = 0; i < 100; i += arraysize(streams)) {
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3recognizersharedstate.h 191 /** 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/
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/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
SequenceInputStreamTest.java 69 InputStream streams[] = new InputStream[2]; field in class:SequenceInputStreamTest.StreamEnumerator
74 streams[0] = new ByteArrayInputStream(s1.getBytes("UTF-8"));
75 streams[1] = new ByteArrayInputStream(s2.getBytes("UTF-8"));
79 return count < streams.length;
83 return streams[count++];
  /external/chromium/third_party/libjingle/source/talk/base/
diskcache.h 43 // DiskCache - An LRU cache of streams, stored on disk.
45 // Streams are identified by a unique resource id. Multiple streams can be
47 // resources are flushed from the cache, all streams associated with those
84 size_t streams; member in struct:talk_base::DiskCache::Entry
  /external/chromium_org/media/base/
demuxer_perftest.cc 55 typedef std::vector<media::DemuxerStream* > Streams;
67 // Returns true when all streams have reached end of stream.
71 const Streams& streams() { return streams_; } function in class:media::StreamReader
82 Streams streams_;
155 // Ignore streams at EOS.
  /external/chromium_org/third_party/libjingle/source/talk/base/
diskcache.h 43 // DiskCache - An LRU cache of streams, stored on disk.
45 // Streams are identified by a unique resource id. Multiple streams can be
47 // resources are flushed from the cache, all streams associated with those
84 size_t streams; member in struct:talk_base::DiskCache::Entry
  /external/sonivox/arm-fm-22k/lib_src/
eas_data.h 113 S_EAS_STREAM streams[MAX_NUMBER_STREAMS]; member in struct:s_eas_data_tag
eas_miditypes.h 101 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/
eas_data.h 113 S_EAS_STREAM streams[MAX_NUMBER_STREAMS]; member in struct:s_eas_data_tag
eas_miditypes.h 101 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/
eas_data.h 115 S_EAS_STREAM streams[MAX_NUMBER_STREAMS]; member in struct:s_eas_data_tag
eas_miditypes.h 101 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/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyConnection.java 36 * A socket connection to a remote peer. A connection hosts streams which can
54 // spdyWriter (to do blocking I/O) and this (to create streams). Such
93 private final Map<Integer, SpdyStream> streams = new HashMap<Integer, SpdyStream>(); field in class:SpdyConnection
121 * Returns the number of {@link SpdyStream#isOpen() open streams} on this
125 return streams.size();
129 return streams.get(id);
133 SpdyStream stream = streams.remove(streamId);
134 if (stream != null && streams.isEmpty()) {
180 streams.put(streamId, stream);
287 * Degrades this connection such that new streams can neither be create
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
zero_copy_stream_unittest.cc 595 // Test that two concatenated gzip streams can be read correctly
886 // Now split it up into multiple streams of varying sizes.
899 ZeroCopyInputStream* streams[] = local
903 ConcatenatingInputStream input(streams, GOOGLE_ARRAYSIZE(streams));
  /external/jmonkeyengine/engine/src/jogg/com/jme3/audio/plugins/
OGGLoader.java 256 Collection<LogicalOggStream> streams = oggStream.getLogicalStreams(); local
257 loStream = streams.iterator().next();
298 // audio streams must remain open
  /external/protobuf/src/google/protobuf/io/
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));
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sound/
pcm_oss.h 68 struct snd_pcm_substream *streams[2]; member in struct:snd_pcm_oss_file
rawmidi.h 93 append: 1, /* append flag (merge more streams) */
131 struct snd_rawmidi_str streams[2]; member in struct:snd_rawmidi
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sound/
pcm_oss.h 68 struct snd_pcm_substream *streams[2]; member in struct:snd_pcm_oss_file
rawmidi.h 93 append: 1, /* append flag (merge more streams) */
131 struct snd_rawmidi_str streams[2]; member in struct:snd_rawmidi

Completed in 608 milliseconds

1 2 3