HomeSort by relevance Sort by last modified time
    Searched refs:TYPE_GOAWAY (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);
Http20Draft09Test.java 409 frame.writeByte(Http20Draft09.TYPE_GOAWAY);
438 frame.writeByte(Http20Draft09.TYPE_GOAWAY);
MockSpdyPeer.java 264 this.type = Spdy3.TYPE_GOAWAY;
SpdyConnectionTest.java 45 import static com.squareup.okhttp.internal.spdy.Spdy3.TYPE_GOAWAY;
    [all...]
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
Http20Draft09.java 48 static final byte TYPE_GOAWAY = 0x7;
140 case TYPE_GOAWAY:
262 if (length < 8) throw ioException("TYPE_GOAWAY length < 8: %s", length);
263 if (streamId != 0) throw ioException("TYPE_GOAWAY streamId != 0");
269 throw ioException("TYPE_GOAWAY unexpected error code: %d", errorCodeInt);
445 byte type = TYPE_GOAWAY;
Spdy3.java 48 static final int TYPE_GOAWAY = 0x7;
172 case TYPE_GOAWAY:
256 if (length != 8) throw ioException("TYPE_GOAWAY length: %d != 8", length);
261 throw ioException("TYPE_GOAWAY unexpected error code: %d", errorCodeInt);
467 int type = TYPE_GOAWAY;

Completed in 334 milliseconds