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

1 2 3 4 5 6

  /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...]
  /external/valgrind/main/none/tests/
resolv.stdout.exp 2 POST _res.nscount = 1
  /external/oauth/core/src/main/java/net/oauth/http/
HttpClient.java 36 static final String POST = OAuthMessage.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
data_socket.cc 47 "Access-Control-Allow-Methods: POST, GET, OPTIONS\r\n"
116 if (method_ != POST) {
194 if (method_ == POST) {
211 { "POST", 4, POST },
  /external/chromium/chrome/browser/chromeos/login/
client_login_response_handler.cc 37 URLFetcher::POST,
  /external/chromium_org/base/test/
sequenced_task_runner_test_template.cc 76 events_.push_back(TaskEvent(i, TaskEvent::POST));
108 case TaskEvent::POST: *os << "POST"; break;
144 // {POST, START, END}, and that there is only one instance of each event type
150 expected_order.push_back(TaskEvent::POST);
183 case TaskEvent::POST:
197 case TaskEvent::POST:
238 GetEventTypeOrder(events, TaskEvent::POST);
246 << "Expected START order (which equals actual POST order): \n"
254 << "Expected END order (which equals actual POST order): \n
    [all...]
  /external/valgrind/main/coregrind/m_syswrap/
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...]
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-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-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...]
  /frameworks/volley/tests/src/com/android/volley/toolbox/
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());
HttpClientStackTest.java 65 TestRequest.Post request = new TestRequest.Post();
66 assertEquals(request.getMethod(), Method.POST);
74 assertEquals(request.getMethod(), Method.POST);
  /external/chromium_org/net/tools/quic/test_tools/
http_message_test_utils.h 33 POST,
  /frameworks/volley/src/com/android/volley/toolbox/
JsonObjectRequest.java 40 * @param jsonRequest A {@link JSONObject} to post with the request. Null is allowed and
53 * <code>null</code>, <code>POST</code> otherwise.
59 this(jsonRequest == null ? Method.GET : Method.POST, url, jsonRequest,
  /external/chromium_org/chrome/browser/safe_browsing/
ping_manager.cc 73 post_data.empty() ? net::URLFetcher::GET : net::URLFetcher::POST,
88 report_url, net::URLFetcher::POST, this);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/
bugTools.jar 
  /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/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/chromium_org/chrome/browser/chromeos/attestation/
attestation_ca_client.cc 82 net::URLFetcher::POST,
  /external/chromium_org/chrome/browser/local_discovery/
privet_url_fetcher.cc 31 // URLFetcher requires us to set upload data for POST requests.
32 if (request_type == net::URLFetcher::POST)
  /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 {
  /external/chromium_org/remoting/webapp/
xhr.js 59 * Execute an XHR POST asynchronously.
61 * @param {string} url The base URL to POST, excluding parameters.
73 remoting.xhr.post = function(url, onDone, opt_parameters, opt_headers,
75 return remoting.xhr.doMethod('POST', url, onDone, opt_parameters,
124 * @param {string} methodName The HTTP method name, e.g. "GET", "POST" etc.
160 var useBody = (methodName == 'POST') || (methodName == 'PUT');
167 if (methodName == '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;

Completed in 622 milliseconds

1 2 3 4 5 6