HomeSort by relevance Sort by last modified time
    Searched refs:associatedStreamId (Results 1 - 9 of 9) sorted by null

  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
BaseTestHandler.java 32 public void headers(boolean outFinished, boolean inFinished, int streamId, int associatedStreamId,
66 public void pushPromise(int streamId, int associatedStreamId, List<Header> headerBlock) {
MockSpdyPeer.java 194 public int associatedStreamId;
225 int associatedStreamId, int priority, List<Header> headerBlock,
232 this.associatedStreamId = associatedStreamId;
282 public void pushPromise(int streamId, int associatedStreamId, List<Header> headerBlock) {
285 this.associatedStreamId = associatedStreamId;
Http20Draft09Test.java 73 int associatedStreamId, int priority, List<Header> headerBlock,
78 assertEquals(-1, associatedStreamId);
108 int associatedStreamId, int priority, List<Header> nameValueBlock,
113 assertEquals(-1, associatedStreamId);
151 int associatedStreamId, int priority, List<Header> headerBlock,
156 assertEquals(-1, associatedStreamId);
SpdyConnectionTest.java 91 assertEquals(0, synStream.associatedStreamId);
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
FrameReader.java 42 * @param associatedStreamId the stream that triggered the sender to create
48 void headers(boolean outFinished, boolean inFinished, int streamId, int associatedStreamId,
FrameWriter.java 50 void synStream(boolean outFinished, boolean inFinished, int streamId, int associatedStreamId,
SpdyConnection.java 206 * @param associatedStreamId the stream that triggered the sender to create
211 public SpdyStream pushStream(int associatedStreamId, List<Header> requestHeaders, boolean out)
215 return newStream(associatedStreamId, requestHeaders, out, false);
231 private SpdyStream newStream(int associatedStreamId, List<Header> requestHeaders, boolean out,
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) {
Spdy3.java 201 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);
Http20Draft09.java 328 int streamId, int associatedStreamId, int priority, int slot, List<Header> headerBlock)

Completed in 1344 milliseconds