OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:spdyRstCode
(Results
1 - 3
of
3
) sorted by null
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/spdy/
ErrorCode.java
40
public final int
spdyRstCode
;
43
private ErrorCode(int httpCode, int
spdyRstCode
, int spdyGoAwayCode) {
45
this.
spdyRstCode
=
spdyRstCode
;
51
if (errorCode.
spdyRstCode
== code) return errorCode;
Spdy3.java
380
if (errorCode.
spdyRstCode
== -1) throw new IllegalArgumentException();
387
sink.writeInt(errorCode.
spdyRstCode
);
Http20Draft09.java
381
if (errorCode.
spdyRstCode
== -1) throw new IllegalArgumentException();
Completed in 39 milliseconds