Searched refs:httpEngine (Results 1 - 7 of 7) sorted by relevance

/libcore/luni/src/main/java/libcore/net/http/
H A DAbstractHttpInputStream.java37 protected final HttpEngine httpEngine; field in class:AbstractHttpInputStream
42 AbstractHttpInputStream(InputStream in, HttpEngine httpEngine, argument
45 this.httpEngine = httpEngine;
86 httpEngine.release(reuseSocket);
105 httpEngine.release(false);
H A DHttpURLConnectionImpl.java66 protected HttpEngine httpEngine; field in class:HttpURLConnectionImpl
81 httpEngine.sendRequest();
90 if (httpEngine != null) {
96 if (httpEngine.hasResponse()) {
97 IoUtils.closeQuietly(httpEngine.getResponseBody());
99 httpEngine.release(false);
199 OutputStream result = httpEngine.getRequestBody();
202 } else if (httpEngine.hasResponse()) {
237 } else if (httpEngine != null) {
252 httpEngine
[all...]
H A DUnknownLengthHttpInputStream.java31 HttpEngine httpEngine) throws IOException {
32 super(is, httpEngine, cacheRequest);
30 UnknownLengthHttpInputStream(InputStream is, CacheRequest cacheRequest, HttpEngine httpEngine) argument
H A DChunkedInputStream.java35 HttpEngine httpEngine) throws IOException {
36 super(is, httpEngine, cacheRequest);
91 httpEngine.readTrailers();
34 ChunkedInputStream(InputStream is, CacheRequest cacheRequest, HttpEngine httpEngine) argument
H A DFixedLengthInputStream.java31 HttpEngine httpEngine, int length) throws IOException {
32 super(is, httpEngine, cacheRequest);
30 FixedLengthInputStream(InputStream is, CacheRequest cacheRequest, HttpEngine httpEngine, int length) argument
H A DHttpResponseCache.java145 HttpEngine httpEngine = getHttpEngine(httpConnection);
146 if (httpEngine == null) {
151 ResponseHeaders response = httpEngine.getResponseHeaders();
156 RawHeaders varyHeaders = httpEngine.getRequestHeaders().getHeaders().getAll(
180 HttpEngine httpEngine = getHttpEngine(httpConnection);
181 URI uri = httpEngine.getUri();
182 ResponseHeaders response = httpEngine.getResponseHeaders();
183 RawHeaders varyHeaders = httpEngine.getRequestHeaders().getHeaders()
H A DHttpsURLConnectionImpl.java390 HttpsEngine engine = (HttpsEngine) httpEngine;
395 HttpsEngine engine = (HttpsEngine) httpEngine;

Completed in 70 milliseconds