Searched refs:HttpEngine (Results 1 - 8 of 8) sorted by relevance

/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHttpTransport.java27 private final HttpEngine httpEngine;
30 public HttpTransport(HttpEngine httpEngine, HttpConnection httpConnection) {
154 @Override public void disconnect(HttpEngine engine) throws IOException {
H A DTransport.java79 void disconnect(HttpEngine engine) throws IOException;
H A DHttpURLConnectionImpl.java56 * This implementation uses HttpEngine to send requests and receive responses.
83 protected HttpEngine httpEngine;
132 HttpEngine response = getResponse();
199 HttpEngine response = getResponse();
286 private HttpEngine newHttpEngine(String method, Connection connection,
315 return new HttpEngine(engineClient, request, bufferRequestBody, connection, null, requestBody,
324 private HttpEngine getResponse() throws IOException {
393 HttpEngine retryEngine = httpEngine.recover(e);
H A DSpdyTransport.java72 private final HttpEngine httpEngine;
76 public SpdyTransport(HttpEngine httpEngine, SpdyConnection spdyConnection) {
124 String host = HttpEngine.hostHeader(request.url());
222 @Override public void disconnect(HttpEngine engine) throws IOException {
H A DHttpConnection.java258 public Source newChunkedSource(CacheRequest cacheRequest, HttpEngine httpEngine)
481 private final HttpEngine httpEngine;
483 ChunkedSource(CacheRequest cacheRequest, HttpEngine httpEngine) throws IOException {
H A DHttpEngine.java75 public class HttpEngine { class
159 public HttpEngine(OkHttpClient client, Request request, boolean bufferRequestBody, method in class:HttpEngine
350 public HttpEngine recover(IOException e) {
366 return new HttpEngine(client, userRequest, bufferRequestBody, connection, routeSelector,
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DJob.java20 import com.squareup.okhttp.internal.http.HttpEngine;
51 HttpEngine engine;
120 engine = new HttpEngine(client, request, false, null, null, null, null);
136 HttpEngine retryEngine = engine.recover(e);
164 engine = new HttpEngine(client, request, false, connection, null, null, null);
174 private Request processResponse(HttpEngine engine, Response response) throws IOException {
H A DConnection.java23 import com.squareup.okhttp.internal.http.HttpEngine;
294 public Object newTransport(HttpEngine httpEngine) throws IOException {

Completed in 119 milliseconds