/external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/ |
D | GetAndPostIntegrationTest.java | 50 import org.apache.http.client.methods.HttpPost; 116 HttpPost httppost = new HttpPost("http://localhost:8192/"); in testPostRequestWithFormEncodedParameters() 132 HttpPost httppost = new HttpPost("http://localhost:8192/"); in testPostRequestWithMultipartEncodedParameters() 148 HttpPost httppost = new HttpPost("http://localhost:8192/"); in testPostWithNoParameters() 170 HttpPost httppost = new HttpPost("http://localhost:8192/chin"); in testPostRequestWithMultipartExtremEncodedParameters()
|
/external/apache-http/src/org/apache/http/client/methods/ |
D | HttpPost.java | 66 public class HttpPost extends HttpEntityEnclosingRequestBase { class 70 public HttpPost() { in HttpPost() method in HttpPost 74 public HttpPost(final URI uri) { in HttpPost() method in HttpPost 82 public HttpPost(final String uri) { in HttpPost() method in HttpPost
|
/external/nanohttpd/fileupload/src/test/java/fi/iki/elonen/ |
D | TestNanoFileUpLoad.java | 56 import org.apache.http.client.methods.HttpPost; 180 HttpPost post = new HttpPost("http://localhost:8192/uploadFile1"); in testPostWithMultipartFormUpload1() 191 HttpPost post = new HttpPost("http://localhost:8192/uploadFile2"); in testPostWithMultipartFormUpload2() 202 HttpPost post = new HttpPost("http://localhost:8192/uploadFile3"); in testPostWithMultipartFormUpload3() 209 …private void executeUpload(CloseableHttpClient httpclient, String textFileName, HttpPost post) thr… in executeUpload()
|
/external/okhttp/okhttp-apache/src/test/java/com/squareup/okhttp/apache/ |
D | OkApacheClientTest.java | 18 import org.apache.http.client.methods.HttpPost; 95 final HttpPost post = new HttpPost(server.getUrl("/").toURI()); in postByteEntity() 108 final HttpPost post = new HttpPost(server.getUrl("/").toURI()); in postInputStreamEntity() 119 final HttpPost post = new HttpPost(server.getUrl("/").toURI()); in postEmptyEntity() 139 HttpPost httpPost = new HttpPost(); in postOverrideContentType()
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/tester/org/apache/http/ |
D | ParamsParserTest.java | 5 import org.apache.http.client.methods.HttpPost; 18 HttpPost post = new HttpPost("example.com"); in parseParams_shouldParsePostEntitiesIntoParams()
|
D | FakeHttpLayerTest.java | 6 import org.apache.http.client.methods.HttpPost; 89 HttpPost noMatch = new HttpPost("example.com"); in matches__shouldMatchPostBody()
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/ |
D | ParamsParser.java | 4 import org.apache.http.client.methods.HttpPost; 25 } else if (request instanceof HttpPost && ((HttpPost) request).getEntity() != null) { in parseParams() 27 … params = parseParamsFromQuery(EntityUtils.toString(((HttpPost) request).getEntity())); in parseParams()
|
/external/volley/src/main/java/com/android/volley/toolbox/ |
D | HttpClientStack.java | 32 import org.apache.http.client.methods.HttpPost; 103 HttpPost postRequest = new HttpPost(request.getUrl()); in createHttpRequest() 118 HttpPost postRequest = new HttpPost(request.getUrl()); in createHttpRequest()
|
/external/volley/src/test/java/com/android/volley/toolbox/ |
D | HttpClientStackTest.java | 27 import org.apache.http.client.methods.HttpPost; 54 assertTrue(httpRequest instanceof HttpPost); in createDeprecatedPostRequest() 70 assertTrue(httpRequest instanceof HttpPost); in createPostRequest() 78 assertTrue(httpRequest instanceof HttpPost); in createPostRequestWithBody()
|
/external/oauth/core/src/main/java/net/oauth/client/httpclient4/ |
D | HttpClient4.java | 31 import org.apache.http.client.methods.HttpPost; 71 isPost ? new HttpPost(url) : new HttpPut(url); in execute()
|
/external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
D | DefaultRequestDirectorTest.java | 13 import org.apache.http.client.methods.HttpPost; 102 Robolectric.addHttpResponseRule(HttpPost.METHOD_NAME, "http://some.uri", in shouldReturnRequestsByRule_MatchingMethod() 120 … HttpResponse postResponse = requestDirector.execute(null, new HttpPost("http://some.uri"), null); in shouldReturnRequestsByRule_AnyMethod() 138 … HttpResponse postResponse = requestDirector.execute(null, new HttpPost("http://some.uri"), null); in shouldReturnRequestsByRule_KeepsTrackOfOpenContentStreams()
|
/external/nanohttpd/nanolets/src/test/java/fi/iki/elonen/router/ |
D | TestNanolets.java | 48 import org.apache.http.client.methods.HttpPost; 118 HttpPost httppost = new HttpPost("http://localhost:9090/user/blabla"); in doSomeBasicMethodTest()
|
/external/apache-http/api/ |
D | apache-http-legacy-current.txt | 1521 …public deprecated class HttpPost extends org.apache.http.client.methods.HttpEntityEnclosingRequest… 1522 ctor public HttpPost(); 1523 ctor public HttpPost(java.net.URI); 1524 ctor public HttpPost(java.lang.String);
|
/external/curl/ |
D | CHANGES.0 | 9875 - Removed the '#define HttpPost' from the public header file, as curl_httppost 12602 - The struct formerly known as HttpPost is now named curl_httppost to properly 15991 - Removed the 'HttpPost' struct and moved the header stuff to the more generic
|