| /external/nanohttpd/core/src/test/java/fi/iki/elonen/integration/ |
| GetAndPostIntegrationTest.java | 50 import org.apache.http.client.methods.HttpPost; 116 HttpPost httppost = new HttpPost("http://localhost:8192/"); local 120 httppost.setEntity(new UrlEncodedFormEntity(postParameters)); 123 String responseBody = this.httpclient.execute(httppost, responseHandler); 132 HttpPost httppost = new HttpPost("http://localhost:8192/"); local 136 httppost.setEntity(reqEntity) 148 HttpPost httppost = new HttpPost("http:\/\/localhost:8192\/"); local 170 HttpPost httppost = new HttpPost("http:\/\/localhost:8192\/chin"); local [all...] |
| /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/tester/org/apache/http/ |
| ParamsParserTest.java | 5 import org.apache.http.client.methods.HttpPost; 18 HttpPost post = new HttpPost("example.com");
|
| FakeHttpLayerTest.java | 6 import org.apache.http.client.methods.HttpPost; 89 HttpPost noMatch = new HttpPost("example.com");
|
| /external/robolectric-shadows/shadows/httpclient/src/test/java/org/robolectric/shadows/httpclient/ |
| ParamsParserTest.java | 8 import org.apache.http.client.methods.HttpPost; 16 HttpPost post = new HttpPost("example.com");
|
| FakeHttpLayerTest.java | 8 import org.apache.http.client.methods.HttpPost; 81 HttpPost noMatch = new HttpPost("example.com");
|
| ShadowDefaultRequestDirectorTest.java | 22 import org.apache.http.client.methods.HttpPost; 120 FakeHttp.addHttpResponseRule(HttpPost.METHOD_NAME, "http://some.uri", 140 requestDirector.execute(null, new HttpPost("http://some.uri"), null); 160 requestDirector.execute(null, new HttpPost("http://some.uri"), null);
|
| /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/org/apache/http/ |
| ParamsParser.java | 4 import org.apache.http.client.methods.HttpPost; 25 } else if (request instanceof HttpPost && ((HttpPost) request).getEntity() != null) { 27 params = parseParamsFromQuery(EntityUtils.toString(((HttpPost) request).getEntity()));
|
| /external/okhttp/okhttp-apache/src/test/java/com/squareup/okhttp/apache/ |
| OkApacheClientTest.java | 18 import org.apache.http.client.methods.HttpPost; 95 final HttpPost post = new HttpPost(server.getUrl("/").toURI()); 108 final HttpPost post = new HttpPost(server.getUrl("/").toURI()); 119 final HttpPost post = new HttpPost(server.getUrl("/").toURI()); 139 HttpPost httpPost = new HttpPost(); [all...] |
| /external/apache-http/src/org/apache/http/client/methods/ |
| HttpPost.java | 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk/module-client/src/main/java/org/apache/http/client/methods/HttpPost.java $ 66 public class HttpPost extends HttpEntityEnclosingRequestBase { 70 public HttpPost() { 74 public HttpPost(final URI uri) { 82 public HttpPost(final String uri) {
|
| /external/curl/tests/data/ |
| test516 | 33 make a HTTPPOST set to NULL
|
| test1135 | 45 CURL_EXTERN CURLFORMcode curl_formadd(struct curl_httppost **httppost,
|
| /external/nanohttpd/fileupload/src/test/java/fi/iki/elonen/ |
| TestNanoFileUpLoad.java | 56 import org.apache.http.client.methods.HttpPost; 180 HttpPost post = new HttpPost("http://localhost:8192/uploadFile1"); 191 HttpPost post = new HttpPost("http://localhost:8192/uploadFile2"); 202 HttpPost post = new HttpPost("http://localhost:8192/uploadFile3"); 209 private void executeUpload(CloseableHttpClient httpclient, String textFileName, HttpPost post) throws IOException, ClientProtocolException {
|
| /external/volley/src/main/java/com/android/volley/toolbox/ |
| HttpClientStack.java | 32 import org.apache.http.client.methods.HttpPost; 107 HttpPost postRequest = new HttpPost(request.getUrl()); 122 HttpPost postRequest = new HttpPost(request.getUrl());
|
| /packages/apps/Email/provider_src/com/android/email/mail/internet/ |
| OAuthAuthenticator.java | 17 import org.apache.http.client.methods.HttpPost; 91 final HttpPost post = new HttpPost(provider.tokenEndpoint); 120 final HttpPost post = new HttpPost(provider.refreshEndpoint); 139 private AuthenticationResult doRequest(HttpPost post) throws MessagingException,
|
| /external/volley/src/test/java/com/android/volley/toolbox/ |
| HttpClientStackTest.java | 27 import org.apache.http.client.methods.HttpPost; 54 assertTrue(httpRequest instanceof HttpPost); 70 assertTrue(httpRequest instanceof HttpPost); 78 assertTrue(httpRequest instanceof HttpPost);
|
| /external/curl/lib/ |
| formdata.c | 64 * Adds a HttpPost structure to the list, if parent_post is given becomes 67 * Returns newly allocated HttpPost on success and NULL if malloc failed. 79 struct curl_httppost **httppost, 112 (*httppost) = post; 253 * CURL_FORMADD_MEMORY if a HttpPost struct cannot be allocated 260 CURLFORMcode FormAdd(struct curl_httppost **httppost, 603 * alright add the HttpPost item otherwise set return_value accordingly */ 688 post, httppost, 701 list which are not already owned by the httppost linked list 727 now by the httppost linked list * [all...] |
| /external/curl/packages/OS400/ |
| ccsidcurl.h | 55 CURL_EXTERN CURLFORMcode curl_formadd_ccsid(struct curl_httppost * * httppost,
|
| ccsidcurl.c | 780 curl_formadd_ccsid(struct curl_httppost * * httppost, 1042 result = curl_formadd(httppost, last_post,
|
| /frameworks/base/core/tests/bandwidthtests/src/com/android/bandwidthtest/util/ |
| BandwidthTestUtil.java | 28 import org.apache.http.client.methods.HttpPost; 137 HttpPost postRequest = new HttpPost(uri);
|
| /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/client/ |
| NetworkUtilities.java | 27 import org.apache.http.client.methods.HttpPost; 118 final HttpPost post = new HttpPost(AUTH_URI); 189 final HttpPost post = new HttpPost(SYNC_CONTACTS_URI);
|
| /external/curl/tests/libtest/ |
| mk-lib1521.pl | 148 struct curl_httppost *httppost = NULL; 217 elsif($name eq "HTTPPOST") { 218 print "${pref} httppost);\n$check";
|
| /external/oauth/core/src/main/java/net/oauth/client/httpclient4/ |
| HttpClient4.java | 31 import org.apache.http.client.methods.HttpPost; 71 isPost ? new HttpPost(url) : new HttpPut(url);
|
| /external/nanohttpd/nanolets/src/test/java/fi/iki/elonen/router/ |
| TestNanolets.java | 48 import org.apache.http.client.methods.HttpPost; 118 HttpPost httppost = new HttpPost("http://localhost:9090/user/blabla"); local 119 response = httpclient.execute(httppost);
|
| /external/libcups/cups/ |
| libcups2.def | 377 httpPost
|
| /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/ |
| DefaultRequestDirectorTest.java | 13 import org.apache.http.client.methods.HttpPost; 102 Robolectric.addHttpResponseRule(HttpPost.METHOD_NAME, "http://some.uri", 120 HttpResponse postResponse = requestDirector.execute(null, new HttpPost("http://some.uri"), null); 138 HttpResponse postResponse = requestDirector.execute(null, new HttpPost("http://some.uri"), null);
|