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

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
Http20Draft09.java 207 int errorCodeInt = source.readInt();
208 ErrorCode errorCode = ErrorCode.fromHttp2(errorCodeInt);
210 throw ioException("TYPE_RST_STREAM unexpected error code: %d", errorCodeInt);
265 int errorCodeInt = source.readInt();
267 ErrorCode errorCode = ErrorCode.fromHttp2(errorCodeInt);
269 throw ioException("TYPE_GOAWAY unexpected error code: %d", errorCodeInt);
Spdy3.java 223 int errorCodeInt = source.readInt();
224 ErrorCode errorCode = ErrorCode.fromSpdy3Rst(errorCodeInt);
226 throw ioException("TYPE_RST_STREAM unexpected error code: %d", errorCodeInt);
258 int errorCodeInt = source.readInt();
259 ErrorCode errorCode = ErrorCode.fromSpdyGoAway(errorCodeInt);
261 throw ioException("TYPE_GOAWAY unexpected error code: %d", errorCodeInt);

Completed in 297 milliseconds