Home
last modified time | relevance | path

Searched refs:POST (Results 1 – 25 of 235) sorted by relevance

12345678910

/external/chromium-trace/catapult/third_party/webapp2/docs/guide/
Drequest.rst10 arguments parsed from the query and from POST data. The method takes the
75 GET, POST, PUT etc.
78 POST data
80 Variables url encoded in the body of a request (generally a POST form submitted
82 ``request.POST``.
88 request.method = 'POST'
92 # POST([('check', 'a'), ('check', 'b'), ('name', 'Bob')])
93 post_values = request.POST
96 check_value = request.POST['check']
99 check_values = request.POST.getall('check')
[all …]
/external/curl/tests/data/
Dtest1815 HTTP POST
27 HTTP 1.0 POST
40 POST
51 POST /we/want/181 HTTP/1.0
64 POST
Dtest5085 POST
6 POST callback
34 send HTTP POST using read callback
49 POST /508 HTTP/1.1
Dtest5516 HTTP POST
7 POST callback
68 HTTP proxy auth Digest with POST data from read callback
81 POST http://test.remote.example.com/path/551 HTTP/1.1
89 POST http://test.remote.example.com/path/551 HTTP/1.1
Dtest11295 HTTP POST
51 HTTP POST expect 100-continue with a 404
81 POST /1129 HTTP/1.1
88 POST /11290001 HTTP/1.1
Dtest11305 HTTP POST
51 HTTP POST forced expect 100-continue with a 404
81 POST /1130 HTTP/1.1
88 POST /11300001 HTTP/1.1
Dtest2455 HTTP POST
57 HTTP POST --digest
70 POST /245 HTTP/1.1
77 POST /245 HTTP/1.1
Dtest15145 HTTP POST
29 HTTP POST with read callback and unknown data size
40 POST /1514 HTTP/1.1
Dtest5135 HTTP POST
25 send HTTP POST using read callback that returns CURL_READFUNC_ABORT
37 POST /513 HTTP/1.1
Dtest975 HTTP POST
29 HTTP POST with custom content-type
43 POST /97 HTTP/1.1
Dtest5445 HTTP POST
33 HTTP POST text data using CURLOPT_COPYPOSTFIELDS
47 POST /544 HTTP/1.1
Dtest5475 HTTP POST
6 POST callback
83 HTTP proxy auth NTLM with POST data from read callback
105 POST http://test.remote.example.com/path/547 HTTP/1.1
114 POST http://test.remote.example.com/path/547 HTTP/1.1
123 POST http://test.remote.example.com/path/547 HTTP/1.1
Dtest1755 HTTP POST
56 HTTP POST --digest to server not requiring any auth at all
69 POST /175 HTTP/1.1
76 POST /175 HTTP/1.1
Dtest5655 HTTP POST
69 send HTTP POST using read callback, chunked transfer-encoding and Digest
80 POST /565 HTTP/1.1
88 POST /565 HTTP/1.1
Dtest5455 HTTP POST
33 HTTP POST binary with embedded zero and no trailing zero
47 POST /545 HTTP/1.1
Dtest2685 HTTP POST
35 HTTP POST a non-existing file
49 POST /268 HTTP/1.1
Dtest5105 HTTP POST
34 send HTTP POST using read callback, using chunked transfer-encoding
45 POST /510 HTTP/1.1
Dtest1765 HTTP POST
57 HTTP POST --ntlm to server not requiring any auth at all
70 POST /176 HTTP/1.1
78 POST /176 HTTP/1.1
Dtest2465 HTTP POST
67 HTTP POST --digest with server doing a 100 before 401 response
80 POST /246 HTTP/1.1
87 POST /246 HTTP/1.1
/external/valgrind/coregrind/m_syswrap/
Dsyswrap-darwin.c1063 #define POST(name) DEFN_POST_TEMPLATE(darwin, name) macro
1368 POST(ioctl) in POST() function
1742 POST(fcntl) in POST() function
1851 POST(semctl) in POST() function
1912 POST(sem_init) in POST() function
1936 POST(kqueue) in POST() function
1966 POST(guarded_kqueue_np) in POST() function
2022 POST(kevent) in POST() function
2048 POST(kevent64) in POST() function
2140 POST(workq_ops) in POST() function
[all …]
/external/chromium-trace/catapult/third_party/Paste/tests/
Dtest_wsgiwrappers.py27 params = request.POST
76 assert len(request.POST) == 1
77 assert isinstance(request.POST.keys()[0], str)
78 fs = request.POST['thefile']
85 assert len(request.POST) == 1
86 assert isinstance(request.POST.keys()[0], str)
87 fs = request.POST['thefile']
/external/llvm/test/CodeGen/X86/
Dvirtual-registers-cleared-in-machine-functions-liveins.ll2 …6_64-unknown-unknown -o /dev/null -stop-after prologepilog %s | FileCheck %s --check-prefix=POST-RA
17 ; POST-RA: liveins:
18 ; POST-RA-NEXT: - { reg: '%edi' }
19 ; POST-RA-NEXT: - { reg: '%esi' }
/external/libmicrohttpd/doc/chapters/
Dprocessingpost.inc3 the server operates. To induce changes on the server, the @emph{POST} method is preferred over
7 composes an individual response text. Even though it was not mandatory to use the @emph{POST} metho…
8 as there is no permanent change caused by the POST, it is an illustrative example on how to share d…
30 as the response for anything but proper @emph{GET} and @emph{POST} requests:
45 @heading POST request
50 not only if there are different POSTs but also if one POST has only been received partly yet and
110 requests other than @emph{POST} requests.
120 if (con_info->connectiontype == POST)
170 If the new request is a @emph{POST}, the postprocessor must be created now. In addition, the type
173 if (0 == strcmp (method, "POST"))
[all …]
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/unit/
Dtest_connection.py231 HTTPretty.register_uri(HTTPretty.POST,
242 HTTPretty.register_uri(HTTPretty.POST,
263 HTTPretty.register_uri(HTTPretty.POST,
285 HTTPretty.register_uri(HTTPretty.POST,
308 HTTPretty.register_uri(HTTPretty.POST,
342 HTTPretty.register_uri(HTTPretty.POST,
358 HTTPretty.register_uri(HTTPretty.POST,
378 HTTPretty.register_uri(HTTPretty.POST,
391 HTTPretty.register_uri(HTTPretty.POST,
412 HTTPretty.register_uri(HTTPretty.POST,
/external/libmicrohttpd/doc/
Dlibmicrohttpd-tutorial.texi67 * Processing POST data::
68 * Improved processing of POST data::
96 @node Processing POST data
97 @chapter Processing POST data
100 @node Improved processing of POST data
101 @chapter Improved processing of POST data

12345678910