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