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

12 3 4 5 6

  /external/chromium_org/chrome/browser/search_engines/
template_url_parser.cc 123 POST
288 // TODO(jcampan): Support engines that use POST; see http://crbug.com/18107
289 if (method_ == TemplateURLParsingContext::POST || data_.short_name.empty() ||
292 if (suggestion_method_ == TemplateURLParsingContext::POST)
350 is_post = LowerCaseEqualsASCII(XMLCharToString(value), "post");
358 method_ = POST;
363 suggestion_method_ = POST;
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-generic.c 184 it is called from is POST(sys_io_setup). In particular,
190 POST(sys_io_setup) does or how it works.
    [all...]
syswrap-xen.c 67 #define POST(name) static DEFN_POST_TEMPLATE(xen, name)
894 POST(memory_op)
938 POST(mmuext_op)
956 POST(evtchn_op)
961 POST(evtchn_op_compat)
967 POST(xen_version)
    [all...]
syswrap-ppc32-linux.c 401 PRE/POST wrappers for ppc32/Linux-specific syscalls
405 #define POST(name) DEFN_POST_TEMPLATE(ppc32_linux, name)
473 POST(sys_stat64)
486 POST(sys_lstat64)
503 POST(sys_fstatat64)
515 POST(sys_fstat64)
800 //.. POST(sys_ptrace)
842 POST(sys_spu_create)
854 POST(sys_spu_run)
861 #undef POST
    [all...]
syswrap-arm-linux.c 335 PRE/POST wrappers for arm/Linux-specific syscalls
339 #define POST(name) DEFN_POST_TEMPLATE(arm_linux, name)
395 POST(sys_lstat64)
411 POST(sys_stat64)
425 POST(sys_fstatat64)
437 POST(sys_fstat64)
709 POST(sys_ptrace)
752 #undef POST
768 // linux/include/asm-arm/unistd.h) to the appropriate PRE/POST sys_foo()
    [all...]
syswrap-mips32-linux.c 523 PRE/POST wrappers for mips/Linux-specific syscalls
526 #define POST(name) DEFN_POST_TEMPLATE(mips_linux, name)
587 POST (sys_lstat64)
604 POST (sys_stat64)
619 POST (sys_fstatat64)
631 POST (sys_fstat64)
782 POST(sys_pipe)
803 #undef POST
812 // linux/include/asm-mips/unistd.h) to the appropriate PRE/POST sys_foo()
    [all...]
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthClient.java 110 * typically OAuthMessage.POST or OAuthMessage.GET, or null to
129 * typically OAuthMessage.POST or OAuthMessage.GET, or null to
175 * typically OAuthMessage.POST or OAuthMessage.GET, or null to
266 final boolean isPost = POST.equalsIgnoreCase(request.method);
344 protected static final String POST = OAuthMessage.POST;
  /external/chromium_org/cloud_print/gcp20/prototype/
cloud_print_request.cc 55 new CloudPrintRequest(url, URLFetcher::POST, delegate));
  /external/chromium_org/components/autofill/core/browser/
form_structure.h 25 POST
100 // form's method be POST is only applied if |require_method_post| is true.
110 // The requirement that the form's method be POST is only applied if
253 // GET or POST.
  /external/chromium_org/components/rappor/
log_uploader.cc 77 net::URLFetcher::Create(server_url_, net::URLFetcher::POST, this));
  /external/chromium_org/net/url_request/
url_fetcher.h 83 POST,
118 // anyway. This doesn't prevent new URLFetchers from trying to post to the IO
134 // Sets data only needed by POSTs. All callers making POST requests should
142 // Sets data only needed by POSTs. All callers making POST requests should
157 // Indicates that the POST data is sent via chunked transfer encoding.
162 // Adds the given bytes to a request's POST data transmitted using chunked
  /frameworks/volley/tests/src/com/android/volley/mock/
TestRequest.java 57 /** Test example of a POST request in the deprecated style. */
81 * Test example of a POST request in the new style. In the new style, it is possible
82 * to have a POST with no body.
84 public static class Post extends Base {
85 public Post() {
86 super(Method.POST, TEST_URL, null);
90 /** Test example of a POST request in the new style with a body. */
91 public static class PostWithBody extends Post {
  /development/samples/SampleSyncAdapter/samplesyncadapter_server/
dashboard.py 75 contact form for the user to fill in. POST saves the new contact
82 def post(self): member in class:ContactInsertPage
83 data = ContactForm(data=self.request.POST)
97 with the current contact information filled in. POST saves new information
107 def post(self): member in class:ContactEditPage
110 data = ContactForm(data=self.request.POST, instance=contact)
137 to specify a file containing a new avatar image. POST is used to
152 def post(self): member in class:AvatarEditPage
  /external/chromium_org/chrome/service/cloud_print/
cloud_print_url_fetcher.cc 162 StartRequestHelper(type, url, net::URLFetcher::POST, delegate, max_retries,
275 if (request_type == net::URLFetcher::POST) {
  /frameworks/volley/tests/src/com/android/volley/toolbox/
HttpClientStackTest.java 69 TestRequest.Post request = new TestRequest.Post();
70 assertEquals(request.getMethod(), Method.POST);
78 assertEquals(request.getMethod(), Method.POST);
  /external/chromium_org/google_apis/drive/
drive_api_requests.cc 181 return net::URLFetcher::POST;
204 return net::URLFetcher::POST;
334 return net::URLFetcher::POST;
458 return net::URLFetcher::POST;
584 return net::URLFetcher::POST;
652 return net::URLFetcher::POST;
858 return net::URLFetcher::POST;
  /external/chromium_org/chrome/browser/component_updater/
component_updater_utils.cc 104 0, url, net::URLFetcher::POST, url_fetcher_delegate));
  /external/chromium_org/chrome/browser/supervised_user/
permission_request_creator_apiary.cc 89 url_fetcher_.reset(URLFetcher::Create(id, url, URLFetcher::POST, this));
  /external/chromium_org/google_apis/gaia/
oauth2_api_call_flow.cc 155 empty_body ? URLFetcher::GET : URLFetcher::POST,
  /external/chromium_org/google_apis/gcm/engine/
checkin_request.cc 134 net::URLFetcher::Create(checkin_url_, net::URLFetcher::POST, this));
  /external/chromium_org/sync/test/accounts_client/
test_accounts_client.cc 146 url, net::URLFetcher::POST, &delegate));
  /external/oauth/core/src/main/java/net/oauth/client/httpclient4/
HttpClient4.java 65 final boolean isPost = POST.equalsIgnoreCase(method);
  /external/wpa_supplicant_8/hs20/server/www/
est.php 95 } else if ($method == "POST" && $cmd == "simpleenroll") {
114 error_log("EST: simpleenroll - POST data from php://input: " . $data);
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/
peer_channel.cc 180 return (ds->method() == DataSocket::POST && ds->content_length() > 0) ||
187 if (ds->method() != DataSocket::GET && ds->method() != DataSocket::POST)
222 // Regardless of GET or POST, we look for the peer_id parameter
  /external/nanohttpd/
README.md 14 * Supports parameter parsing of GET and POST methods.

Completed in 947 milliseconds

12 3 4 5 6