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

  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/spdy/
SpdyConnectionTest.java 48 import static com.squareup.okhttp.internal.spdy.Spdy3.TYPE_RST_STREAM;
450 assertEquals(TYPE_RST_STREAM, rstStream.type);
470 assertEquals(TYPE_RST_STREAM, rstStream.type);
599 assertEquals(TYPE_RST_STREAM, rstStream.type);
646 assertEquals(TYPE_RST_STREAM, rstStream.type);
701 assertEquals(TYPE_RST_STREAM, rstStream.type);
731 assertEquals(TYPE_RST_STREAM, rstStream.type);
    [all...]
MockSpdyPeer.java 249 this.type = Spdy3.TYPE_RST_STREAM;
Http20Draft09Test.java 249 frame.writeByte(Http20Draft09.TYPE_RST_STREAM);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
Http20Draft09.java 44 static final byte TYPE_RST_STREAM = 0x3;
124 case TYPE_RST_STREAM:
205 if (length != 4) throw ioException("TYPE_RST_STREAM length: %d != 4", length);
206 if (streamId == 0) throw ioException("TYPE_RST_STREAM streamId == 0");
210 throw ioException("TYPE_RST_STREAM unexpected error code: %d", errorCodeInt);
384 byte type = TYPE_RST_STREAM;
Spdy3.java 45 static final int TYPE_RST_STREAM = 0x3;
160 case TYPE_RST_STREAM:
221 if (length != 8) throw ioException("TYPE_RST_STREAM length: %d != 8", length);
226 throw ioException("TYPE_RST_STREAM unexpected error code: %d", errorCodeInt);
382 int type = TYPE_RST_STREAM;

Completed in 437 milliseconds