Home | History | Annotate | Download | only in spdy

Lines Matching refs:streamId

156       int streamId = w1 & 0x7fffffff;
157 handler.data(flags, streamId, in, length);
166 int streamId = w1 & 0x7fffffff;
171 handler.synStream(flags, streamId, associatedStreamId, priority, slot, nameValueBlock);
176 int streamId = w1 & 0x7fffffff;
178 handler.synReply(flags, streamId, nameValueBlock);
183 int streamId = in.readInt() & 0x7fffffff;
185 handler.rstStream(flags, streamId, statusCode);
190 int streamId = w1 & 0x7fffffff;
192 handler.headers(flags, streamId, nameValueBlock);
199 int streamId = w1 & 0x7fffffff;
201 handler.windowUpdate(flags, streamId, deltaWindowSize);
312 void data(int flags, int streamId, InputStream in, int length) throws IOException;
314 void synStream(int flags, int streamId, int associatedStreamId, int priority, int slot,
317 void synReply(int flags, int streamId, List<String> nameValueBlock) throws IOException;
318 void headers(int flags, int streamId, List<String> nameValueBlock) throws IOException;
319 void rstStream(int flags, int streamId, int statusCode);
322 void ping(int flags, int streamId);
324 void windowUpdate(int flags, int streamId, int deltaWindowSize);