HomeSort by relevance Sort by last modified time
    Searched defs:POST (Results 1 - 23 of 23) 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 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...]
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-darwin.c 221 "run_a_thread_NORETURN(tid=%lld): post-thread_wrapper\n",
683 #define POST(name) DEFN_POST_TEMPLATE(darwin, name)
704 // Set the POST handler for a mach_msg derivative
913 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.
  /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/oauth/core/src/main/java/net/oauth/
OAuthMessage.java 383 public static final String POST = "POST";
  /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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
bugTools.jar 
  /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))
  /libcore/luni/src/main/java/libcore/net/http/
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/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.mortbay.jetty.server_6.1.23.v201004211559.jar 

Completed in 339 milliseconds