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

  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
Spdy3Test.java 62 frame.writeInt(0x80000000 | (Spdy3.VERSION & 0x7fff) << 16 | Spdy3.TYPE_GOAWAY & 0xffff);
74 FrameReader fr = new Spdy3.Reader(frame, false);
87 Spdy3.Writer writer = new Spdy3.Writer(new OkBuffer(), true);
92 new Spdy3.Writer(new OkBuffer(), true).windowUpdate(expectedStreamId, increment);
98 new Spdy3.Writer(out, true).goAway(lastGoodStreamId, errorCode, debugData);
MockSpdyPeer.java 42 private Variant variant = new Spdy3();
213 this.type = Spdy3.TYPE_SETTINGS;
220 this.type = Spdy3.TYPE_SETTINGS;
228 this.type = Spdy3.TYPE_HEADERS;
241 this.type = Spdy3.TYPE_DATA;
249 this.type = Spdy3.TYPE_RST_STREAM;
256 this.type = Spdy3.TYPE_PING;
264 this.type = Spdy3.TYPE_GOAWAY;
272 this.type = Spdy3.TYPE_WINDOW_UPDATE;
SpdyConnectionTest.java 44 import static com.squareup.okhttp.internal.spdy.Spdy3.TYPE_DATA;
45 import static com.squareup.okhttp.internal.spdy.Spdy3.TYPE_GOAWAY;
46 import static com.squareup.okhttp.internal.spdy.Spdy3.TYPE_HEADERS;
47 import static com.squareup.okhttp.internal.spdy.Spdy3.TYPE_PING;
48 import static com.squareup.okhttp.internal.spdy.Spdy3.TYPE_RST_STREAM;
49 import static com.squareup.okhttp.internal.spdy.Spdy3.TYPE_SETTINGS;
50 import static com.squareup.okhttp.internal.spdy.Spdy3.TYPE_WINDOW_UPDATE;
57 private static final Variant SPDY3 = new Spdy3();
75 SpdyConnection connection = connection(peer, SPDY3);
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
NameValueBlockReader.java 65 setDictionary(Spdy3.DICTIONARY);
Spdy3.java 36 final class Spdy3 implements Variant {
SpdyConnection.java 71 /** The protocol variant, like {@link com.squareup.okhttp.internal.spdy.Spdy3}. */
148 variant = new Spdy3();

Completed in 65 milliseconds