HomeSort by relevance Sort by last modified time
    Searched refs:POST (Results 26 - 50 of 65) sorted by null

12 3

  /external/chromium/chrome/browser/safe_browsing/
protocol_manager.cc 170 URLFetcher* fetcher = new URLFetcher(gethash_url, URLFetcher::POST, this);
615 request_.reset(new URLFetcher(update_url, URLFetcher::POST, this));
658 report_url, post_data.empty() ? URLFetcher::GET : URLFetcher::POST, this);
671 URLFetcher* fetcher = new URLFetcher(report_url, URLFetcher::POST, this);
client_side_detection_service.cc 286 URLFetcher::POST,
  /external/oauth/core/src/main/java/net/oauth/client/httpclient4/
HttpClient4.java 65 final boolean isPost = POST.equalsIgnoreCase(method);
  /frameworks/volley/src/com/android/volley/toolbox/
HttpClientStack.java 95 // If the request's post body is null, then the assumption is that the request is
96 // GET. Otherwise, it is assumed that the request is a POST.
113 case Method.POST: {
HurlStack.java 184 // If the request's post body is null, then the assumption is that the request is
185 // GET. Otherwise, it is assumed that the request is a POST.
192 connection.setRequestMethod("POST");
208 case Method.POST:
209 connection.setRequestMethod("POST");
  /external/webkit/LayoutTests/dom/html/level2/html/
button04.js 106 assertEquals("formLink","POST".toLowerCase(),vfmethod.toLowerCase());
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
button04.js 106 assertEquals("formLink","POST".toLowerCase(),vfmethod.toLowerCase());
  /libcore/luni/src/main/java/libcore/net/http/
HttpURLConnectionImpl.java 245 // they are requesting a stream to write to. This implies a POST method
246 method = HttpEngine.POST;
247 } else if (method != HttpEngine.POST && method != HttpEngine.PUT) {
248 // If the request method is neither POST nor PUT, then you're not writing
HttpEngine.java 96 public static final String POST = "POST";
336 throw new IllegalStateException("No socket to write to; was a POST cached?");
376 return method == POST || method == PUT;
  /external/chromium/chrome/browser/resources/picasaweb_uploader/js/
picasa_client.js 192 this.sendRequest('POST', 'https://www.google.com/accounts/ClientLogin',
227 * @param {string} method Method to use (GET or POST).
273 * @param {*} body Post body.
279 return this.sendRequest('POST', url, headers, body, function(xhr) {
  /external/chromium/chrome/browser/sync/glue/
http_bridge.cc 197 LOG(WARNING) << "Could not post CallMakeAsynchronousPost task";
220 URLFetcher::POST, this);
http_bridge_unittest.cc 93 DummyURLFetcher() : TestURLFetcher(0, GURL(), POST, NULL) {}
  /external/chromium/chrome/common/net/gaia/
gaia_oauth_client.cc 108 request_.reset(URLFetcher::Create(0, gaia_url_, URLFetcher::POST, this));
gaia_auth_fetcher.cc 128 URLFetcher::POST,
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-ppc64-linux.c 430 PRE/POST wrappers for ppc64/Linux-specific syscalls
434 #define POST(name) DEFN_POST_TEMPLATE(ppc64_linux, name)
615 POST(sys_socketcall)
767 //zz POST(sys_stat64)
780 //zz POST(sys_lstat64)
795 //zz POST(sys_fstat64)
887 POST(sys_ipc)
    [all...]
syswrap-s390x-linux.c 329 PRE/POST wrappers for s390x/Linux-specific syscalls
333 #define POST(name) DEFN_POST_TEMPLATE(s390x_linux, name)
414 POST(sys_ptrace)
658 POST(sys_socketcall)
872 POST(sys_ipc)
    [all...]
  /external/webkit/Tools/TestResultServer/handlers/
testfilehandler.py 167 def post(self): member in class:Upload
168 file_params = self.request.POST.getall(PARAM_FILE)
  /frameworks/volley/src/com/android/volley/
Request.java 41 * Default encoding for POST or PUT parameters. See {@link #getParamsEncoding()}.
51 int POST = 1;
59 /** Request method of this request. Currently supports GET, POST, PUT, and DELETE. */
195 mainThread.post(new Runnable() {
294 * Returns a Map of POST parameters to be used for this request, or null if
309 * Returns which encoding should be used when converting POST parameters returned by
310 * {@link #getPostParams()} into a raw POST body.
334 * Returns the raw POST body to be sent.
344 // overridden these two member functions for POST requests.
353 * Returns a Map of parameters to be used for a POST or PUT request. Can thro
    [all...]
  /external/chromium/chrome/browser/autofill/
form_structure.cc 23 const char kFormMethodPost[] = "post";
80 method_ = POST;
325 return !require_method_post || (method_ == POST);
autofill_download.cc 240 URLFetcher::POST,
  /external/chromium/chrome/browser/
bug_report_util.cc 44 // URL to post bug reports to.
111 // post cleanup object - that pointer will be deleted and deleted only on a
112 // successful post to the feedback server.
212 URLFetcher* fetcher = new URLFetcher(post_url, URLFetcher::POST,
376 // We have the body of our POST, so send it off to the server with 0 delay
  /external/chromium/chrome/common/extensions/docs/server/
chromeextensionsdocs.py 167 method=urlfetch.POST,
  /external/oauth/core/src/main/java/net/oauth/
OAuthMessage.java 383 public static final String POST = "POST";
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_bugzilla/org/eclipse/releng/services/bugzilla/
UpdateBugStateTask.java 55 private static final String POST = "POST"; //$NON-NLS-1$
466 /* parse xml, build post string */
500 HttpsURLConnection bugconn = getConn(bugurl, POST, true, true, bugcookie);
605 if (method.equals(POST))
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-php/lib/lightopenid/
openid.php 76 $this->data = $_POST + $_GET; # OPs may send data as POST or GET.
123 if ($method == 'POST') {
477 $response = $this->request($server, 'POST', $params);

Completed in 1919 milliseconds

12 3