Searched defs:associatedStreamId (Results 1 - 7 of 7) sorted by relevance

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
H A DFrameReader.java42 * @param associatedStreamId the stream that triggered the sender to create
48 void headers(boolean outFinished, boolean inFinished, int streamId, int associatedStreamId, argument
H A DFrameWriter.java50 void synStream(boolean outFinished, boolean inFinished, int streamId, int associatedStreamId, argument
H A DSpdy3.java201 int associatedStreamId = w2 & 0x7fffffff;
208 handler.headers(outFinished, inFinished, streamId, associatedStreamId, priority,
330 int streamId, int associatedStreamId, int priority, int slot, List<Header> headerBlock)
342 sink.writeInt(associatedStreamId & 0x7fffffff);
329 synStream(boolean outFinished, boolean inFinished, int streamId, int associatedStreamId, int priority, int slot, List<Header> headerBlock) argument
H A DHttp20Draft09.java328 int streamId, int associatedStreamId, int priority, int slot, List<Header> headerBlock)
327 synStream(boolean outFinished, boolean inFinished, int streamId, int associatedStreamId, int priority, int slot, List<Header> headerBlock) argument
H A DSpdyConnection.java206 * @param associatedStreamId the stream that triggered the sender to create
211 public SpdyStream pushStream(int associatedStreamId, List<Header> requestHeaders, boolean out) argument
215 return newStream(associatedStreamId, requestHeaders, out, false);
231 private SpdyStream newStream(int associatedStreamId, List<Header> requestHeaders, boolean out, argument
253 if (associatedStreamId == 0) {
254 frameWriter.synStream(outFinished, inFinished, streamId, associatedStreamId, priority, slot,
259 frameWriter.pushPromise(associatedStreamId, streamId, requestHeaders);
587 int associatedStreamId, int priority, List<Header> headerBlock, HeadersMode headersMode) {
586 headers(boolean outFinished, boolean inFinished, int streamId, int associatedStreamId, int priority, List<Header> headerBlock, HeadersMode headersMode) argument
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
H A DBaseTestHandler.java32 public void headers(boolean outFinished, boolean inFinished, int streamId, int associatedStreamId, argument
66 public void pushPromise(int streamId, int associatedStreamId, List<Header> headerBlock) { argument
H A DMockSpdyPeer.java194 public int associatedStreamId; field in class:MockSpdyPeer.InFrame
225 int associatedStreamId, int priority, List<Header> headerBlock,
232 this.associatedStreamId = associatedStreamId;
282 public void pushPromise(int streamId, int associatedStreamId, List<Header> headerBlock) { argument
285 this.associatedStreamId = associatedStreamId;
224 headers(boolean outFinished, boolean inFinished, int streamId, int associatedStreamId, int priority, List<Header> headerBlock, HeadersMode headersMode) argument

Completed in 99 milliseconds