Home
last modified time | relevance | path

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

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/framed/
DErrorCode.java62 public final int spdyRstCode; field in ErrorCode
65 private ErrorCode(int httpCode, int spdyRstCode, int spdyGoAwayCode) { in ErrorCode() argument
67 this.spdyRstCode = spdyRstCode; in ErrorCode()
73 if (errorCode.spdyRstCode == code) return errorCode; in fromSpdy3Rst()
DSpdy3.java374 if (errorCode.spdyRstCode == -1) throw new IllegalArgumentException(); in rstStream()
381 sink.writeInt(errorCode.spdyRstCode); in rstStream()