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

  /external/okhttp/src/test/java/com/squareup/okhttp/internal/spdy/
MockSpdyPeer.java 167 public int associatedStreamId;
188 @Override public void synStream(int flags, int streamId, int associatedStreamId, int priority,
194 this.associatedStreamId = associatedStreamId;
SpdyConnectionTest.java 88 assertEquals(0, synStream.associatedStreamId);
    [all...]
  /external/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
SpdyReader.java 167 int associatedStreamId = w2 & 0x7fffffff;
171 handler.synStream(flags, streamId, associatedStreamId, priority, slot, nameValueBlock);
314 void synStream(int flags, int streamId, int associatedStreamId, int priority, int slot,
SpdyWriter.java 45 public synchronized void synStream(int flags, int streamId, int associatedStreamId, int priority,
55 out.writeInt(associatedStreamId & 0x7fffffff);
SpdyConnection.java 165 int associatedStreamId = 0; // TODO: permit the caller to specify an associated stream?
185 spdyWriter.synStream(flags, streamId, associatedStreamId, priority, slot, requestHeaders);
449 @Override public void synStream(int flags, int streamId, int associatedStreamId, int priority,

Completed in 230 milliseconds