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

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
Http20Draft09.java 45 static final byte TYPE_SETTINGS = 0x4;
128 case TYPE_SETTINGS:
217 if (streamId != 0) throw ioException("TYPE_SETTINGS streamId != 0");
224 if (length % 8 != 0) throw ioException("TYPE_SETTINGS length %% 8 != 0: %s", length);
313 byte type = TYPE_SETTINGS;
415 byte type = TYPE_SETTINGS;
Spdy3.java 46 static final int TYPE_SETTINGS = 0x4;
164 case TYPE_SETTINGS:
269 throw ioException("TYPE_SETTINGS length: %d != 4 + 8 * %d", length, numberOfEntries);
431 int type = TYPE_SETTINGS;
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
MockSpdyPeer.java 213 this.type = Spdy3.TYPE_SETTINGS;
220 this.type = Spdy3.TYPE_SETTINGS;
SpdyConnectionTest.java 49 import static com.squareup.okhttp.internal.spdy.Spdy3.TYPE_SETTINGS;
293 assertEquals(TYPE_SETTINGS, ackFrame.type);
297 assertEquals(TYPE_SETTINGS, ackFrame.type);
    [all...]
Http20Draft09Test.java 271 frame.writeByte(Http20Draft09.TYPE_SETTINGS);

Completed in 308 milliseconds