OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HTTP_11
(Results
1 - 10
of
10
) sorted by null
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Protocol.java
39
HTTP_11
("http/1.1", false);
42
Util.immutableList(Arrays.asList(HTTP_2, SPDY_3,
HTTP_11
));
44
Util.immutableList(Arrays.asList(SPDY_3,
HTTP_11
));
46
Util.immutableList(Arrays.asList(HTTP_2,
HTTP_11
));
64
* Returns the protocol matching {@code input} or {@link #
HTTP_11
} is on
69
if (input == null) return
HTTP_11
;
Connection.java
211
Protocol selectedProtocol = Protocol.
HTTP_11
;
OkHttpClient.java
358
if (!protocols.contains(Protocol.
HTTP_11
)) {
/external/okhttp/android/main/java/com/squareup/okhttp/
HttpsHandler.java
29
private static final List<Protocol> ENABLED_PROTOCOLS = Arrays.asList(Protocol.
HTTP_11
);
/external/okhttp/benchmarks/src/main/java/com/squareup/okhttp/benchmarks/
Benchmark.java
86
List<Protocol> protocols = Arrays.asList(Protocol.
HTTP_11
);
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpConnection.java
184
.header(OkHeaders.SELECTED_PROTOCOL, Protocol.
HTTP_11
.name.utf8());
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
MockWebServer.java
182
if (!protocols.contains(Protocol.
HTTP_11
)) {
311
Protocol protocol = Protocol.
HTTP_11
;
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
HttpOverSpdyTest.java
88
client.setProtocols(Arrays.asList(protocol, Protocol.
HTTP_11
));
RouteSelectorTest.java
82
private final List<Protocol> protocols = Arrays.asList(Protocol.
HTTP_11
);
URLConnectionTest.java
[
all
...]
Completed in 313 milliseconds