/external/apache-http/src/org/apache/http/client/methods/ |
D | HttpEntityEnclosingRequestBase.java | 35 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/nanohttpd/nanolets/src/test/java/fi/iki/elonen/router/ |
D | TestNanolets.java | 44 import org.apache.http.HttpEntity; 112 HttpEntity entity = response.getEntity(); in doSomeBasicMethodTest() 149 HttpEntity entity = response.getEntity(); in doNonRouterRequest() 161 HttpEntity entity = response.getEntity(); in doExceptionRequest() 173 HttpEntity entity = response.getEntity(); in doDeletedRoute() 185 HttpEntity entity = response.getEntity(); in doUriSelection1() 197 HttpEntity entity = response.getEntity(); in doStreamOfData() 242 HttpEntity entity = response.getEntity(); in doGeneralParams() 254 HttpEntity entity = response.getEntity(); in doIndexHandler() 266 HttpEntity entity = response.getEntity(); in doMissingHandler() [all …]
|
/external/apache-http/src/org/apache/http/impl/client/ |
D | EntityEnclosingRequestWrapper.java | 35 import org.apache.http.HttpEntity; 62 private HttpEntity entity; 70 public HttpEntity getEntity() { in getEntity() 74 public void setEntity(final HttpEntity entity) { in setEntity()
|
D | BasicResponseHandler.java | 36 import org.apache.http.HttpEntity; 80 HttpEntity entity = response.getEntity(); in handleResponse()
|
/external/apache-http/src/org/apache/http/entity/ |
D | HttpEntityWrapper.java | 39 import org.apache.http.HttpEntity; 57 public class HttpEntityWrapper implements HttpEntity { 60 protected HttpEntity wrappedEntity; 67 public HttpEntityWrapper(HttpEntity wrapped) { in HttpEntityWrapper()
|
D | BufferedHttpEntity.java | 39 import org.apache.http.HttpEntity; 64 public BufferedHttpEntity(final HttpEntity entity) throws IOException { in BufferedHttpEntity()
|
D | AbstractHttpEntity.java | 37 import org.apache.http.HttpEntity; 57 public abstract class AbstractHttpEntity implements HttpEntity {
|
/external/apache-http/src/org/apache/http/message/ |
D | BasicHttpEntityEnclosingRequest.java | 35 import org.apache.http.HttpEntity; 58 private HttpEntity entity; 73 public HttpEntity getEntity() { in getEntity() 77 public void setEntity(final HttpEntity entity) { in setEntity()
|
D | BasicHttpResponse.java | 36 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/ |
D | EntityUtils.java | 40 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/ |
D | HttpEntityBody.java | 7 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/ |
D | HttpEntityEnclosingRequest.java | 64 void setEntity(HttpEntity entity); in setEntity() 66 HttpEntity getEntity(); in getEntity()
|
D | HttpResponse.java | 135 HttpEntity getEntity(); in getEntity() 143 void setEntity(HttpEntity entity); in setEntity()
|
/external/robolectric-shadows/shadows/httpclient/src/main/java/org/robolectric/shadows/httpclient/ |
D | HttpResponseStub.java | 6 import org.apache.http.HttpEntity; 38 @Override public HttpEntity getEntity() { in getEntity() 42 @Override public void setEntity(HttpEntity httpEntity) { in setEntity()
|
D | HttpEntityStub.java | 7 import org.apache.http.HttpEntity; 12 public class HttpEntityStub implements HttpEntity {
|
D | ParamsParser.java | 9 import org.apache.http.HttpEntity; 31 HttpEntity entity = request.getEntity(); in parseParamsForRequestWithEntity()
|
/external/nanohttpd/webserver/src/test/java/fi/iki/elonen/ |
D | AbstractTestHttpServer.java | 39 import org.apache.http.HttpEntity; 46 protected byte[] readContents(HttpEntity entity) throws IOException { in readContents()
|
/external/apache-http/src/org/apache/http/protocol/ |
D | RequestExpectContinue.java | 36 import org.apache.http.HttpEntity; 71 HttpEntity entity = ((HttpEntityEnclosingRequest)request).getEntity(); in process()
|
D | RequestContent.java | 36 import org.apache.http.HttpEntity; 78 HttpEntity entity = ((HttpEntityEnclosingRequest)request).getEntity(); in process()
|
D | ResponseContent.java | 36 import org.apache.http.HttpEntity; 78 HttpEntity entity = response.getEntity(); in process()
|
/external/apache-http/src/org/apache/http/client/utils/ |
D | URLEncodedUtils.java | 43 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/ |
D | EntitySerializer.java | 37 import org.apache.http.HttpEntity; 91 final HttpEntity entity) throws HttpException, IOException { in serialize()
|
/external/apache-http/src/org/apache/http/conn/ |
D | BasicManagedEntity.java | 37 import org.apache.http.HttpEntity; 80 public BasicManagedEntity(HttpEntity entity, in BasicManagedEntity()
|
/external/nanohttpd/core/src/test/java/fi/iki/elonen/ |
D | SSLServerSocketFactoryTest.java | 40 import org.apache.http.HttpEntity; 59 HttpEntity entity = response.getEntity(); in testSSLConnection()
|
D | HttpSSLServerTest.java | 41 import org.apache.http.HttpEntity; 58 HttpEntity entity = response.getEntity(); in testSSLConnection()
|