Home
last modified time | relevance | path

Searched refs:HttpEntity (Results 1 – 25 of 41) sorted by relevance

12

/external/apache-http/src/org/apache/http/client/methods/
DHttpEntityEnclosingRequestBase.java35 import org.apache.http.HttpEntity;
57 private HttpEntity entity;
63 public HttpEntity getEntity() { in getEntity()
67 public void setEntity(final HttpEntity entity) { in setEntity()
81 clone.entity = (HttpEntity) CloneUtils.clone(this.entity); in clone()
/external/apache-http/src/org/apache/http/impl/client/
DEntityEnclosingRequestWrapper.java35 import org.apache.http.HttpEntity;
62 private HttpEntity entity;
70 public HttpEntity getEntity() { in getEntity()
74 public void setEntity(final HttpEntity entity) { in setEntity()
DBasicResponseHandler.java36 import org.apache.http.HttpEntity;
80 HttpEntity entity = response.getEntity(); in handleResponse()
/external/apache-http/src/org/apache/http/entity/
DHttpEntityWrapper.java39 import org.apache.http.HttpEntity;
57 public class HttpEntityWrapper implements HttpEntity {
60 protected HttpEntity wrappedEntity;
67 public HttpEntityWrapper(HttpEntity wrapped) { in HttpEntityWrapper()
DBufferedHttpEntity.java39 import org.apache.http.HttpEntity;
64 public BufferedHttpEntity(final HttpEntity entity) throws IOException { in BufferedHttpEntity()
DAbstractHttpEntity.java37 import org.apache.http.HttpEntity;
57 public abstract class AbstractHttpEntity implements HttpEntity {
/external/apache-http/src/org/apache/http/message/
DBasicHttpEntityEnclosingRequest.java35 import org.apache.http.HttpEntity;
58 private HttpEntity entity;
73 public HttpEntity getEntity() { in getEntity()
77 public void setEntity(final HttpEntity entity) { in setEntity()
DBasicHttpResponse.java36 import org.apache.http.HttpEntity;
62 private HttpEntity entity;
129 public HttpEntity getEntity() { in getEntity()
180 public void setEntity(final HttpEntity entity) { in setEntity()
/external/apache-http/src/org/apache/http/util/
DEntityUtils.java40 import org.apache.http.HttpEntity;
65 public static byte[] toByteArray(final HttpEntity entity) throws IOException { in toByteArray()
93 public static String getContentCharSet(final HttpEntity entity) in getContentCharSet()
113 … final HttpEntity entity, final String defaultCharset) throws IOException, ParseException { in toString()
149 public static String toString(final HttpEntity entity) in toString()
/external/okhttp/okhttp-apache/src/main/java/com/squareup/okhttp/apache/
DHttpEntityBody.java7 import org.apache.http.HttpEntity;
13 private final HttpEntity entity;
16 HttpEntityBody(HttpEntity entity, String contentTypeHeader) { in HttpEntityBody()
/external/apache-http/src/org/apache/http/
DHttpEntityEnclosingRequest.java64 void setEntity(HttpEntity entity); in setEntity()
66 HttpEntity getEntity(); in getEntity()
DHttpResponse.java135 HttpEntity getEntity(); in getEntity()
143 void setEntity(HttpEntity entity); in setEntity()
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/
DHttpResponseStub.java5 import org.apache.http.HttpEntity;
39 @Override public HttpEntity getEntity() { in getEntity()
43 @Override public void setEntity(HttpEntity httpEntity) { in setEntity()
DHttpEntityStub.java4 import org.apache.http.HttpEntity;
13 public class HttpEntityStub implements HttpEntity {
/external/apache-http/src/org/apache/http/protocol/
DRequestExpectContinue.java36 import org.apache.http.HttpEntity;
71 HttpEntity entity = ((HttpEntityEnclosingRequest)request).getEntity(); in process()
DRequestContent.java36 import org.apache.http.HttpEntity;
78 HttpEntity entity = ((HttpEntityEnclosingRequest)request).getEntity(); in process()
DResponseConnControl.java37 import org.apache.http.HttpEntity;
89 HttpEntity entity = response.getEntity(); in process()
DResponseContent.java36 import org.apache.http.HttpEntity;
78 HttpEntity entity = response.getEntity(); in process()
/external/apache-http/src/org/apache/http/client/utils/
DURLEncodedUtils.java43 import org.apache.http.HttpEntity;
99 final HttpEntity entity) throws IOException { in parse()
117 public static boolean isEncoded (final HttpEntity entity) { in isEncoded()
/external/apache-http/src/org/apache/http/impl/entity/
DEntitySerializer.java37 import org.apache.http.HttpEntity;
91 final HttpEntity entity) throws HttpException, IOException { in serialize()
DEntityDeserializer.java37 import org.apache.http.HttpEntity;
108 public HttpEntity deserialize( in deserialize()
/external/apache-http/src/org/apache/http/conn/
DBasicManagedEntity.java37 import org.apache.http.HttpEntity;
80 public BasicManagedEntity(HttpEntity entity, in BasicManagedEntity()
/external/okhttp/okhttp-apache/src/test/java/com/squareup/okhttp/apache/
DOkApacheClientTest.java15 import org.apache.http.HttpEntity;
177 HttpEntity entity = response.getEntity(); in contentEncoding()
198 HttpEntity entity = response.getEntity(); in jsonGzipResponse()
223 HttpEntity entity = response.getEntity(); in jsonTransparentGzipResponse()
250 private static String gunzip(HttpEntity body) throws IOException { in gunzip()
/external/apache-http/src/org/apache/http/impl/
DDefaultConnectionReuseStrategy.java37 import org.apache.http.HttpEntity;
103 HttpEntity entity = response.getEntity(); in keepAlive()
/external/robolectric/src/test/java/com/xtremelabs/robolectric/tester/org/apache/http/
DFakeHttpLayerTest.java4 import org.apache.http.HttpEntity;
81 public boolean matches(HttpEntity actualPostBody) throws IOException { in matches__shouldMatchPostBody()

12