HomeSort by relevance Sort by last modified time
    Searched defs:httpEngine (Results 1 - 4 of 4) sorted by null

  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
HttpTransport.java 28 private final HttpEngine httpEngine;
31 public HttpTransport(HttpEngine httpEngine, HttpConnection httpConnection) {
32 this.httpEngine = httpEngine;
72 httpEngine.writingRequestHeaders();
74 httpEngine.getConnection().getRoute().getProxy().type(),
75 httpEngine.getConnection().getProtocol());
93 if ("close".equalsIgnoreCase(httpEngine.getRequest().header("Connection")))
    [all...]
SpdyTransport.java 69 private final HttpEngine httpEngine;
73 public SpdyTransport(HttpEngine httpEngine, SpdyConnection spdyConnection) {
74 this.httpEngine = httpEngine;
85 httpEngine.writingRequestHeaders();
86 boolean permitsRequestBody = httpEngine.permitsRequestBody();
88 String version = RequestLine.version(httpEngine.getConnection().getProtocol());
92 stream.readTimeout().timeout(httpEngine.client.getReadTimeout(), TimeUnit.MILLISECONDS)
    [all...]
HttpConnection.java 249 public Source newChunkedSource(HttpEngine httpEngine) throws IOException {
252 return new ChunkedSource(httpEngine);
448 private final HttpEngine httpEngine;
450 ChunkedSource(HttpEngine httpEngine) throws IOException {
451 this.httpEngine = httpEngine;
492 httpEngine.receiveHeaders(trailersBuilder.build())
    [all...]
  /external/okhttp/okhttp-urlconnection/src/main/java/com/squareup/okhttp/internal/huc/
HttpURLConnectionImpl.java 34 import com.squareup.okhttp.internal.http.HttpEngine;
65 * This implementation uses HttpEngine to send requests and receive responses.
89 protected HttpEngine httpEngine;
120 if (httpEngine == null) return;
122 httpEngine.disconnect();
137 HttpEngine response = getResponse();
138 if (HttpEngine.hasBody(response.getResponse())
231 HttpEngine response = getResponse();
247 BufferedSink sink = httpEngine.getBufferedRequestBody()
    [all...]

Completed in 59 milliseconds