Home
last modified time | relevance | path

Searched refs:streamId (Results 1 – 14 of 14) sorted by relevance

/external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
DSpdyConnection.java132 synchronized SpdyStream removeStream(int streamId) { in removeStream() argument
133 SpdyStream stream = streams.remove(streamId); in removeStream()
169 int streamId; in newStream() local
176 streamId = nextStreamId; in newStream()
178 stream = new SpdyStream(streamId, this, flags, priority, slot, requestHeaders, settings); in newStream()
180 streams.put(streamId, stream); in newStream()
185 spdyWriter.synStream(flags, streamId, associatedStreamId, priority, slot, requestHeaders); in newStream()
191 void writeSynReply(int streamId, int flags, List<String> alternating) throws IOException { in writeSynReply() argument
192 spdyWriter.synReply(flags, streamId, alternating); in writeSynReply()
202 void writeSynResetLater(final int streamId, final int statusCode) { in writeSynResetLater() argument
[all …]
DSpdyReader.java156 int streamId = w1 & 0x7fffffff; in nextFrame() local
157 handler.data(flags, streamId, in, length); in nextFrame()
166 int streamId = w1 & 0x7fffffff; in readSynStream() local
171 handler.synStream(flags, streamId, associatedStreamId, priority, slot, nameValueBlock); in readSynStream()
176 int streamId = w1 & 0x7fffffff; in readSynReply() local
178 handler.synReply(flags, streamId, nameValueBlock); in readSynReply()
183 int streamId = in.readInt() & 0x7fffffff; in readRstStream() local
185 handler.rstStream(flags, streamId, statusCode); in readRstStream()
190 int streamId = w1 & 0x7fffffff; in readHeaders() local
192 handler.headers(flags, streamId, nameValueBlock); in readHeaders()
[all …]
DSpdyWriter.java45 public synchronized void synStream(int flags, int streamId, int associatedStreamId, int priority, in synStream() argument
54 out.writeInt(streamId & 0x7fffffff); in synStream()
61 public synchronized void synReply(int flags, int streamId, List<String> nameValueBlock) in synReply() argument
69 out.writeInt(streamId & 0x7fffffff); in synReply()
74 public synchronized void headers(int flags, int streamId, List<String> nameValueBlock) in headers() argument
82 out.writeInt(streamId & 0x7fffffff); in headers()
87 public synchronized void rstStream(int streamId, int statusCode) throws IOException { in rstStream() argument
93 out.writeInt(streamId & 0x7fffffff); in rstStream()
98 public synchronized void data(int flags, int streamId, byte[] data) throws IOException { in data() argument
100 out.writeInt(streamId & 0x7fffffff); in data()
[all …]
/external/okhttp/src/test/java/com/squareup/okhttp/internal/spdy/
DMockSpdyPeer.java166 public int streamId; field in MockSpdyPeer.InFrame
188 @Override public void synStream(int flags, int streamId, int associatedStreamId, int priority, in synStream() argument
193 this.streamId = streamId; in synStream()
200 @Override public void synReply(int flags, int streamId, List<String> nameValueBlock) { in synReply() argument
203 this.streamId = streamId; in synReply()
208 @Override public void headers(int flags, int streamId, List<String> nameValueBlock) { in headers() argument
211 this.streamId = streamId; in headers()
216 @Override public void data(int flags, int streamId, InputStream in, int length) in data() argument
221 this.streamId = streamId; in data()
226 @Override public void rstStream(int flags, int streamId, int statusCode) { in rstStream() argument
[all …]
DSpdyConnectionTest.java87 assertEquals(1, synStream.streamId); in clientCreatesStreamAndServerReplies()
152 assertEquals(2, reply.streamId); in serverCreatesStreamAndClientReplies()
211 assertEquals(2, ping.streamId); in serverPingsClient()
232 assertEquals(1, pingFrame.streamId); in clientPingsServer()
249 assertEquals(2, ping2.streamId);
251 assertEquals(4, ping4.streamId);
323 assertEquals(42, rstStream.streamId);
326 assertEquals(2, ping.streamId);
344 assertEquals(42, rstStream.streamId);
347 assertEquals(2, ping.streamId);
[all …]
/external/chromium_org/chrome/common/extensions/api/
Dcast_streaming_rtp_stream.idl61 callback CreateCallback = void (long streamId);
65 // |streamId| : The RTP stream ID.
66 [nocompile] static void destroy(long streamId);
69 // |streamId| : The RTP stream ID.
70 [nocompile] static RtpCaps getCaps(long streamId);
73 // |streamId| : The RTP stream ID.
75 [nocompile] static void start(long streamId, RtpParams params);
78 // |streamId| : The RTP stream ID.
79 [nocompile] static void stop(long streamId);
84 // |streamId| : The ID of the RTP stream.
[all …]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/svga/include/
Dsvga_overlay.h68 uint32 streamId; member
81 uint32 streamId; member
/external/mesa3d/src/gallium/drivers/svga/include/
Dsvga_overlay.h68 uint32 streamId; member
81 uint32 streamId; member
/external/chromium_org/chrome/browser/resources/hangout_services/
Dthunk.js46 function sendResponseWithCancelId(streamId) { argument
48 'streamId': streamId}; property
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/
DRTCPeerConnection.cpp438 MediaStream* RTCPeerConnection::getStreamById(const String& streamId) in getStreamById() argument
441 if ((*iter)->id() == streamId) in getStreamById()
446 if ((*iter)->id() == streamId) in getStreamById()
DRTCPeerConnection.h92 MediaStream* getStreamById(const String& streamId);
DRTCPeerConnection.idl62 MediaStream getStreamById(DOMString streamId);
/external/tcpdump/
DsctpHeader.h298 u_int16_t streamId; member
Dprint-sctp.c192 printf("[SID: %u] ", EXTRACT_16BITS(&dataHdrPtr->streamId)); in sctp_print()