OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:TYPE_RST_STREAM
(Results
1 - 2
of
2
) sorted by null
/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 42 milliseconds