Home
last modified time | relevance | path

Searched refs:errorCodeInt (Results 1 – 2 of 2) sorted by relevance

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
DSpdy3.java217 int errorCodeInt = source.readInt(); in readRstStream() local
218 ErrorCode errorCode = ErrorCode.fromSpdy3Rst(errorCodeInt); in readRstStream()
220 throw ioException("TYPE_RST_STREAM unexpected error code: %d", errorCodeInt); in readRstStream()
252 int errorCodeInt = source.readInt(); in readGoAway() local
253 ErrorCode errorCode = ErrorCode.fromSpdyGoAway(errorCodeInt); in readGoAway()
255 throw ioException("TYPE_GOAWAY unexpected error code: %d", errorCodeInt); in readGoAway()
DHttp2.java251 int errorCodeInt = source.readInt(); in readRstStream() local
252 ErrorCode errorCode = ErrorCode.fromHttp2(errorCodeInt); in readRstStream()
254 throw ioException("TYPE_RST_STREAM unexpected error code: %d", errorCodeInt); in readRstStream()
337 int errorCodeInt = source.readInt(); in readGoAway() local
339 ErrorCode errorCode = ErrorCode.fromHttp2(errorCodeInt); in readGoAway()
341 throw ioException("TYPE_GOAWAY unexpected error code: %d", errorCodeInt); in readGoAway()