OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:httpEngine
(Results
1 - 5
of
5
) sorted by null
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
SpdyTransport.java
29
private final
HttpEngine
httpEngine
;
33
public SpdyTransport(
HttpEngine
httpEngine
, SpdyConnection spdyConnection) {
34
this.
httpEngine
=
httpEngine
;
48
httpEngine
.writingRequestHeaders();
49
RawHeaders requestHeaders =
httpEngine
.requestHeaders.getHeaders();
50
String version =
httpEngine
.connection.getHttpMinorVersion() == 1 ? "HTTP/1.1" : "HTTP/1.0";
51
URL url =
httpEngine
.policy.getURL()
[
all
...]
HttpURLConnectionImpl.java
46
* This implementation uses
HttpEngine
to send requests and receive responses.
77
protected
HttpEngine
httpEngine
;
95
if (
httpEngine
!= null) {
97
//
HttpEngine
.release because that is called when input
101
if (
httpEngine
.hasResponse()) {
102
Util.closeQuietly(
httpEngine
.getResponseBody());
104
httpEngine
.release(true);
114
HttpEngine
response = getResponse();
179
HttpEngine
response = getResponse()
[
all
...]
AbstractHttpInputStream.java
37
protected final
HttpEngine
httpEngine
;
42
AbstractHttpInputStream(InputStream in,
HttpEngine
httpEngine
, CacheRequest cacheRequest)
45
this.
httpEngine
=
httpEngine
;
86
httpEngine
.release(streamCancelled);
105
httpEngine
.release(true);
HttpTransport.java
42
private final
HttpEngine
httpEngine
;
54
public HttpTransport(
HttpEngine
httpEngine
, OutputStream outputStream, InputStream inputStream) {
55
this.
httpEngine
=
httpEngine
;
62
boolean chunked =
httpEngine
.requestHeaders.isChunked();
64
&&
httpEngine
.policy.getChunkLength() > 0
65
&&
httpEngine
.connection.getHttpMinorVersion() != 0) {
66
httpEngine
.requestHeaders.setChunked()
[
all
...]
/external/okhttp/src/main/java/com/squareup/okhttp/
HttpResponseCache.java
23
import com.squareup.okhttp.internal.http.
HttpEngine
;
244
HttpEngine
httpEngine
= getHttpEngine(httpConnection);
245
if (
httpEngine
== null) {
250
ResponseHeaders response =
httpEngine
.getResponseHeaders();
256
httpEngine
.getRequestHeaders().getHeaders().getAll(response.getVaryFields());
291
HttpEngine
httpEngine
= getHttpEngine(httpConnection);
292
URI uri =
httpEngine
.getUri();
293
ResponseHeaders response =
httpEngine
.getResponseHeaders()
[
all
...]
Completed in 390 milliseconds