Home
last modified time | relevance | path

Searched refs:httpCode (Results 1 – 3 of 3) sorted by relevance

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
DErrorCode.java61 public final int httpCode; field in ErrorCode
65 private ErrorCode(int httpCode, int spdyRstCode, int spdyGoAwayCode) { in ErrorCode() argument
66 this.httpCode = httpCode; in ErrorCode()
80 if (errorCode.httpCode == code) return errorCode; in fromHttp2()
DHttp2.java468 if (errorCode.httpCode == -1) throw new IllegalArgumentException(); in rstStream()
474 sink.writeInt(errorCode.httpCode); in rstStream()
532 if (errorCode.httpCode == -1) throw illegalArgument("errorCode.httpCode == -1"); in goAway()
539 sink.writeInt(errorCode.httpCode); in goAway()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/framed/
DHttp2Test.java224 frame.writeInt(ErrorCode.COMPRESSION_ERROR.httpCode); in readRstStreamFrame()
572 frame.writeInt(expectedError.httpCode); in goAwayWithoutDebugDataRoundTrip()
597 frame.writeInt(expectedError.httpCode); in goAwayWithDebugDataRoundTrip()