HomeSort by relevance Sort by last modified time
    Searched defs:POST (Results 1 - 25 of 30) sorted by null

1 2

  /external/oauth/core/src/main/java/net/oauth/http/
HttpClient.java 36 static final String POST = OAuthMessage.POST;
  /external/chromium_org/net/url_request/
url_fetcher.h 76 POST,
109 // anyway. This doesn't prevent new URLFetchers from trying to post to the IO
125 // Sets data only needed by POSTs. All callers making POST requests should
133 // Sets data only needed by POSTs. All callers making POST requests should
148 // Indicates that the POST data is sent via chunked transfer encoding.
153 // Adds the given bytes to a request's POST data transmitted using chunked
  /external/chromium/chrome/common/net/
url_fetcher.h 66 POST,
128 // Sets data only needed by POSTs. All callers making POST requests should
139 // Indicates that the POST data is sent via chunked transfer encoding.
144 // Adds the given bytes to a request's POST data transmitted using chunked
219 // anyway. This doesn't prevent new URLFetchers from trying to post to the IO
  /external/valgrind/main/coregrind/m_syswrap/
syswrap-amd64-linux.c 348 PRE/POST wrappers for AMD64/Linux-specific syscalls
352 #define POST(name) DEFN_POST_TEMPLATE(amd64_linux, name)
625 POST(sys_ptrace)
658 POST(sys_socket)
683 POST(sys_getsockopt)
707 POST(sys_accept)
724 POST(sys_accept4)
753 POST(sys_recvfrom)
776 POST(sys_recvmsg)
809 POST(sys_getsockname
    [all...]
syswrap-arm-linux.c 335 PRE/POST wrappers for arm/Linux-specific syscalls
339 #define POST(name) DEFN_POST_TEMPLATE(arm_linux, name)
556 POST(sys_socketcall)
666 POST(sys_socket)
691 POST(sys_getsockopt)
715 POST(sys_accept)
732 POST(sys_accept4)
761 POST(sys_recvfrom)
784 POST(sys_recvmsg)
836 POST(sys_semctl
    [all...]
syswrap-ppc32-linux.c 401 PRE/POST wrappers for ppc32/Linux-specific syscalls
405 #define POST(name) DEFN_POST_TEMPLATE(ppc32_linux, name)
589 POST(sys_socketcall)
740 POST(sys_stat64)
753 POST(sys_lstat64)
770 POST(sys_fstatat64)
782 POST(sys_fstat64)
874 POST(sys_ipc)
    [all...]
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-mips32-linux.c 365 PRE/POST wrappers for mips/Linux-specific syscalls
368 #define POST(name) DEFN_POST_TEMPLATE(mips_linux, name)
556 POST (sys_socketcall)
646 POST (sys_socket)
672 POST (sys_getsockopt)
697 POST (sys_accept)
729 POST (sys_recvfrom)
752 POST(sys_recvmsg)
804 POST (sys_semctl)
846 POST (sys_msgrcv)
    [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...]
syswrap-x86-linux.c 783 PRE/POST wrappers for x86/Linux-specific syscalls
787 #define POST(name) DEFN_POST_TEMPLATE(x86_linux, name)
    [all...]
syswrap-linux.c 159 "run_a_thread_NORETURN(tid=%lld): post-thread_wrapper\n",
485 PRE/POST wrappers for arch-generic, Linux-specific syscalls
488 // Nb: See the comment above the generic PRE/POST wrappers in
492 #define POST(name) DEFN_POST_TEMPLATE(linux, name)
595 POST(sys_getresuid16)
614 POST(sys_getresuid)
649 POST(sys_getresgid16)
668 POST(sys_getresgid)
726 POST(sys_llseek)
762 POST(sys_adjtimex
    [all...]
  /external/chromium/chrome/browser/autofill/
form_structure.h 25 POST
72 // form's method be POST is only applied if |require_method_post| is true.
82 // The requirement that the form's method be POST is only applied if
173 // GET or POST.
  /external/chromium_org/base/test/
sequenced_task_runner_test_template.h 31 enum Type { POST, START, END };
42 // Posts the non-nestable task |task|, and records its post event.
47 // Posts the nestable task |task|, and records its post event.
52 // Posts the delayed non-nestable task |task|, and records its post event.
76 // Records a post event for task |i|. The owner is expected to be holding
109 // 2) Events for an individual tasks occur in the order {POST, START, END},
  /external/chromium_org/components/autofill/core/browser/
form_structure.h 22 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
243 // GET or POST.
  /external/chromium_org/net/tools/quic/test_tools/
http_message_test_utils.h 33 POST,
  /external/chromium_org/third_party/libjingle/source/talk/examples/peerconnection/server/
data_socket.h 74 POST,
103 return headers_received() && (method_ != POST || data_received());
107 return method_ != POST || data_.length() >= content_length_;
138 // content length (POST only) of a request.
142 // Figures out whether the request is a GET or POST and what path is
  /frameworks/volley/tests/src/com/android/volley/toolbox/
HttpClientStackTest.java 65 TestRequest.Post request = new TestRequest.Post();
66 assertEquals(request.getMethod(), Method.POST);
74 assertEquals(request.getMethod(), Method.POST);
HurlStackTest.java 52 assertEquals("POST", mMockConnection.getRequestMethod());
66 TestRequest.Post request = new TestRequest.Post();
67 assertEquals(request.getMethod(), Method.POST);
70 assertEquals("POST", mMockConnection.getRequestMethod());
76 assertEquals(request.getMethod(), Method.POST);
79 assertEquals("POST", mMockConnection.getRequestMethod());
  /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/chrome/browser/search_engines/
template_url_parser.cc 130 POST
295 // TODO(jcampan): Support engines that use POST; see http://crbug.com/18107
296 if (method_ == TemplateURLParsingContext::POST || data_.short_name.empty() ||
299 if (suggestion_method_ == TemplateURLParsingContext::POST)
358 is_post = LowerCaseEqualsASCII(XMLCharToString(value), "post");
366 method_ = POST;
371 suggestion_method_ = POST;
  /external/oauth/core/src/main/java/net/oauth/
OAuthMessage.java 383 public static final String POST = "POST";
  /external/chromium_org/chrome/test/chromedriver/client/
command_executor.py 11 POST = 'POST'
16 NEW_SESSION = (_Method.POST, '/session')
21 GET = (_Method.POST, '/session/:sessionId/url')
23 DISMISS_ALERT = (_Method.POST, '/session/:sessionId/dismiss_alert')
24 ACCEPT_ALERT = (_Method.POST, '/session/:sessionId/accept_alert')
26 SET_ALERT_VALUE = (_Method.POST, '/session/:sessionId/alert_text')
27 GO_FORWARD = (_Method.POST, '/session/:sessionId/forward')
28 GO_BACK = (_Method.POST, '/session/:sessionId/back')
29 REFRESH = (_Method.POST, '/session/:sessionId/refresh'
    [all...]
  /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/search_engines/
template_url_parser.cc 92 POST
319 is_post = LowerCaseEqualsASCII(XMLCharToString(value), "post");
327 context->set_method(ParsingContext::POST);
332 context->set_suggestion_method(ParsingContext::POST);
576 // that use POST yet.
577 if (context.method() == ParsingContext::POST)
579 if (context.suggestion_method() == ParsingContext::POST)
  /external/chromium_org/chrome/browser/metrics/
metrics_service.cc 18 // as data in a URL-post, and retransmitting (or retaining at process
    [all...]

Completed in 234 milliseconds

1 2