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

  /external/oauth/core/src/main/java/net/oauth/http/
HttpClient.java 36 static final String POST = OAuthMessage.POST;
  /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 345 PRE/POST wrappers for AMD64/Linux-specific syscalls
349 #define POST(name) DEFN_POST_TEMPLATE(amd64_linux, name)
608 POST(sys_ptrace)
641 POST(sys_socket)
666 POST(sys_getsockopt)
690 POST(sys_accept)
707 POST(sys_accept4)
736 POST(sys_recvfrom)
759 POST(sys_recvmsg)
792 POST(sys_getsockname
    [all...]
syswrap-arm-linux.c 289 PRE/POST wrappers for arm/Linux-specific syscalls
293 #define POST(name) DEFN_POST_TEMPLATE(arm_linux, name)
500 POST(sys_socketcall)
608 POST(sys_socket)
633 POST(sys_getsockopt)
657 POST(sys_accept)
686 POST(sys_recvfrom)
709 POST(sys_recvmsg)
761 POST(sys_semctl)
803 POST(sys_msgrcv
    [all...]
syswrap-ppc32-aix5.c 149 "run_a_thread_NORETURN(tid=%lld): post-thread_wrapper\n",
326 PRE/POST wrappers for ppc32/AIX5-specific syscalls
341 #define POST(name) DEFN_POST_TEMPLATE(ppc32_aix5, name)
409 POST(sys___loadx)
451 POST(sys___unload)
466 POST(sys__clock_gettime)
684 POST(sys_thread_setstate)
    [all...]
syswrap-ppc32-linux.c 398 PRE/POST wrappers for ppc32/Linux-specific syscalls
402 #define POST(name) DEFN_POST_TEMPLATE(ppc32_linux, name)
585 POST(sys_socketcall)
736 POST(sys_stat64)
749 POST(sys_lstat64)
766 POST(sys_fstatat64)
778 POST(sys_fstat64)
870 POST(sys_ipc)
    [all...]
syswrap-ppc64-aix5.c 149 "run_a_thread_NORETURN(tid=%lld): post-thread_wrapper\n",
326 PRE/POST wrappers for ppc64/AIX5-specific syscalls
341 #define POST(name) DEFN_POST_TEMPLATE(ppc64_aix5, name)
359 POST(sys__clock_gettime)
376 POST(sys_kload)
392 POST(sys_kunload64)
594 POST(sys_thread_setstate)
syswrap-ppc64-linux.c 428 PRE/POST wrappers for ppc64/Linux-specific syscalls
432 #define POST(name) DEFN_POST_TEMPLATE(ppc64_linux, name)
614 POST(sys_socketcall)
766 //zz POST(sys_stat64)
779 //zz POST(sys_lstat64)
794 //zz POST(sys_fstat64)
886 POST(sys_ipc)
    [all...]
syswrap-x86-linux.c 780 PRE/POST wrappers for x86/Linux-specific syscalls
784 #define POST(name) DEFN_POST_TEMPLATE(x86_linux, name)
    [all...]
syswrap-aix5.c 165 "POST(sys___loadx/sys__kload)(code)" );
168 "POST(sys___loadx/sys__kload)(data)" );
428 PRE/POST wrappers for arch-generic, AIX5-specific syscalls. Note:
435 // Nb: See the comment above the generic PRE/POST wrappers in
439 #define POST(name) DEFN_POST_TEMPLATE(aix5, name)
469 POST(sys___libc_sbrk)
546 POST(sys__nsleep)
577 POST(sys__poll)
664 POST(sys__sigaction)
703 POST(sys_appgetrlimit
    [all...]
syswrap-linux.c 130 "run_a_thread_NORETURN(tid=%lld): post-thread_wrapper\n",
385 PRE/POST wrappers for arch-generic, Linux-specific syscalls
388 // Nb: See the comment above the generic PRE/POST wrappers in
392 #define POST(name) DEFN_POST_TEMPLATE(linux, name)
495 POST(sys_getresuid16)
514 POST(sys_getresuid)
549 POST(sys_getresgid16)
568 POST(sys_getresgid)
626 POST(sys_llseek)
662 POST(sys_adjtimex
    [all...]
syswrap-generic.c 190 it is called from is POST(sys_io_setup). In particular,
196 POST(sys_io_setup) does or how it works.
    [all...]
syswrap-darwin.c 213 "run_a_thread_NORETURN(tid=%lld): post-thread_wrapper\n",
656 #define POST(name) DEFN_POST_TEMPLATE(darwin, name)
677 // Set the POST handler for a mach_msg derivative
879 POST(ioctl)
    [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/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/oauth/core/src/main/java/net/oauth/
OAuthMessage.java 383 public static final String POST = "POST";
  /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)
  /libcore/luni/src/main/java/libcore/net/http/
HttpEngine.java 93 public static final String POST = "POST";
328 throw new IllegalStateException("No socket to write to; was a POST cached?");
368 return method == POST || method == PUT;

Completed in 260 milliseconds