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

1 2 3 4 5 6 7 8

  /external/valgrind/none/tests/
resolv.stdout.exp 2 POST _res.nscount = 1
  /external/valgrind/none/tests/solaris/
resolv.stdout.exp 2 POST stats->nscount = 1
  /bionic/libc/arch-common/bionic/
crtbegin.c 49 #define POST "; .size _start, .-_start"
52 __asm__(PRE "mov x0,sp; b _start_main" POST);
54 __asm__(PRE "mov r0,sp; b _start_main" POST);
56 __asm__(PRE "movl %esp,%eax; andl $~0xf,%esp; subl $12,%esp; pushl %eax; calll _start_main" POST);
58 __asm__(PRE "movq %rsp,%rdi; andq $~0xf,%rsp; callq _start_main" POST);
64 #undef POST
  /external/oauth/core/src/main/java/net/oauth/http/
HttpClient.java 36 static final String POST = OAuthMessage.POST;
  /test/vti/test_serving/gae/testing/
test-endpoint.sh 3 curl -H "Content-Type: application/json" -X POST -d '{"devices": [{"serial": "123", "product": "myfish", "serial": "myserial", "status": 1}], "hostname": "hc1"}' https://vtslab-schedule-prod.appspot.com/_ah/api/host_info/v1/set
5 curl -H "Content-Type: application/json" -X POST -d '{"manifest_branch": "master", "build_id": "a2131", "build_target": "sailfish", "build_type": "userdebug"}' https://vtslab-schedule-prod.appspot.com/_ah/api/build_info/v1/set
7 curl -H "Content-Type: application/json" -X POST -d '{"device": [{"index": 1}], "host_name": "hc1"}' https://vtslab-schedule-prod.appspot.com/_ah/api/host_info/v1/set
9 curl -H "Content-Type: application/json" -X POST -d '{"hostname": "vtslab-mtv43-2"}' https://vtslab-schedule-prod.appspot.com/_ah/api/job_queue/v1/get
  /external/curl/docs/cmdline-opts/
data-ascii.d 3 Help: HTTP POST ASCII data
post301.d 7 Tells curl to respect RFC 7231/6.4.2 and not convert POST requests into GET
10 consistency. However, a server may require a POST to remain a POST after such
post302.d 7 Tells curl to respect RFC 7231/6.4.3 and not convert POST requests into GET
10 consistency. However, a server may require a POST to remain a POST after such
post303.d 7 Tells curl to respect RFC 7231/6.4.4 and not convert POST requests into GET
10 consistency. However, a server may require a POST to remain a POST after such
data-raw.d 4 Help: HTTP POST data, '@' allowed
get.d 3 Help: Put the post data in the URL and use GET
6 or --data-urlencode to be used in an HTTP GET request instead of the POST
10 If used in combination with --head, the POST data will instead be appended to
data-binary.d 3 Help: HTTP POST binary data
  /external/webrtc/webrtc/examples/peerconnection/server/
data_socket.h 59 POST,
88 return headers_received() && (method_ != POST || data_received());
92 return method_ != POST || data_.length() >= content_length_;
123 // content length (POST only) of a request.
127 // Figures out whether the request is a GET or POST and what path is
  /prebuilts/go/darwin-x86/src/net/http/
method.go 13 MethodPost = "POST"
transport_internal_test.go 115 req: dummyRequest("POST"),
121 req: dummyRequest("POST"),
127 req: dummyRequest("POST"),
139 req: dummyRequest("POST"),
145 req: dummyRequest("POST"),
163 req: dummyRequestWithBody("POST"),
169 req: dummyRequestWithBodyNoGetBody("POST"),
  /prebuilts/go/linux-x86/src/net/http/
method.go 13 MethodPost = "POST"
transport_internal_test.go 115 req: dummyRequest("POST"),
121 req: dummyRequest("POST"),
127 req: dummyRequest("POST"),
139 req: dummyRequest("POST"),
145 req: dummyRequest("POST"),
163 req: dummyRequestWithBody("POST"),
169 req: dummyRequestWithBodyNoGetBody("POST"),
  /external/libmicrohttpd/doc/examples/
simplepost.c 22 #define POST 1
33 <form action=\"/namepost\" method=\"post\">\
103 if (con_info->connectiontype == POST)
130 if (0 == strcmp (method, "POST"))
142 con_info->connectiontype = POST;
157 if (0 == strcmp (method, "POST"))
  /prebuilts/go/darwin-x86/src/net/http/httputil/
dump_test.go 93 Method: "POST",
96 Host: "post.tld",
106 WantDumpOut: "POST / HTTP/1.1\r\n" +
107 "Host: post.tld\r\n" +
118 Method: "POST",
121 Host: "post.tld",
135 WantDumpOut: "POST / HTTP/1.1\r\n" +
136 "Host: post.tld\r\n" +
141 WantDump: "POST / HTTP/1.1\r\n" +
142 "Host: post.tld\r\n"
    [all...]
  /prebuilts/go/linux-x86/src/net/http/httputil/
dump_test.go 93 Method: "POST",
96 Host: "post.tld",
106 WantDumpOut: "POST / HTTP/1.1\r\n" +
107 "Host: post.tld\r\n" +
118 Method: "POST",
121 Host: "post.tld",
135 WantDumpOut: "POST / HTTP/1.1\r\n" +
136 "Host: post.tld\r\n" +
141 WantDump: "POST / HTTP/1.1\r\n" +
142 "Host: post.tld\r\n"
    [all...]
  /external/autotest/client/common_lib/cros/fake_device_server/
fail_control.py 35 def POST(self, *args, **kwargs):
36 """Handle POST messages."""
  /external/nanohttpd/fileupload/src/main/java/fi/iki/elonen/
NanoFileUpload.java 36 import static fi.iki.elonen.NanoHTTPD.Method.POST;
99 return session.getMethod() == POST && FileUploadBase.isMultipartContent(new NanoHttpdContext(session));
  /prebuilts/jdk/jdk8/darwin-x86/sample/nio/server/
Request.java 68 static Action POST = new Action("POST");
76 if (s.equals("POST"))
77 return POST;
  /prebuilts/jdk/jdk8/linux-x86/sample/nio/server/
Request.java 68 static Action POST = new Action("POST");
76 if (s.equals("POST"))
77 return POST;
  /external/valgrind/coregrind/m_syswrap/
syswrap-darwin.c 203 "run_a_thread_NORETURN(tid=%u): post-thread_wrapper\n",
    [all...]

Completed in 2020 milliseconds

1 2 3 4 5 6 7 8