Searched refs:formpost (Results 1 – 18 of 18) sorted by relevance
/external/curl/tests/libtest/ |
D | lib554.c | 73 struct curl_httppost *formpost=NULL; in test() local 87 formrc = curl_formadd(&formpost, in test() 105 formrc = curl_formadd(&formpost, in test() 116 formrc = curl_formadd(&formpost, in test() 133 formrc = curl_formadd(&formpost, in test() 148 formrc = curl_formadd(&formpost, &lastptr, in test() 160 curl_formfree(formpost); in test() 178 test_setopt(curl, CURLOPT_HTTPPOST, formpost); in test() 196 curl_formfree(formpost); in test()
|
/external/curl/docs/examples/ |
D | postit2.c | 46 struct curl_httppost *formpost=NULL; in main() local 54 curl_formadd(&formpost, in main() 61 curl_formadd(&formpost, in main() 69 curl_formadd(&formpost, in main() 85 curl_easy_setopt(curl, CURLOPT_HTTPPOST, formpost); in main() 98 curl_formfree(formpost); in main()
|
D | multi-post.c | 37 struct curl_httppost *formpost=NULL; in main() local 44 curl_formadd(&formpost, in main() 51 curl_formadd(&formpost, in main() 58 curl_formadd(&formpost, in main() 77 curl_easy_setopt(curl, CURLOPT_HTTPPOST, formpost); in main() 163 curl_formfree(formpost); in main()
|
D | README | 62 multi-post.c - a multi-interface app doing a multipart formpost 71 postit2.c - send a HTTP multipart formpost
|
/external/google-breakpad/src/common/linux/ |
D | http_upload.cc | 126 struct curl_httppost *formpost = NULL; in SendRequest() local 133 (*curl_formadd)(&formpost, &lastptr, in SendRequest() 139 (*curl_formadd)(&formpost, &lastptr, in SendRequest() 144 (*curl_easy_setopt)(curl, CURLOPT_HTTPPOST, formpost); in SendRequest() 185 if (formpost != NULL) { in SendRequest() 188 (*curl_formfree)(formpost); in SendRequest()
|
/external/curl/tests/data/ |
D | test1308 | 21 formpost unit tests 27 Piece of the file that is to uploaded as a formpost
|
D | test41 | 19 HTTP formpost with missing file
|
D | test587 | 27 HTTP multi-part formpost with aborted read callback
|
D | test158 | 24 HTTP multipart formpost with only a 100 reply
|
D | test166 | 27 HTTP formpost a file with spaces in name
|
D | test304 | 30 HTTPS multipart formpost
|
D | test163 | 27 HTTP multipart formpost with contents from a file
|
D | test173 | 28 HTTP RFC1867-formpost a file from stdin with "faked" filename
|
D | test554 | 34 HTTP multi-part formpost using read callback for the file part
|
/external/curl/docs/ |
D | FEATURES | 47 - multipart formpost (RFC1867-style)
|
D | TODO | 110 17.5 provide formpost headers 595 17.5 provide formpost headers
|
D | MANUAL | 317 (page located at http://www.formpost.com/getthis/ 331 http://www.formpost.com/getthis/post.cgi
|
/external/curl/ |
D | CHANGES.0 | 6241 (serialise) a previously built formpost (as with curl_formadd()). 7593 formpost part, without special characters having special meanings etc like 8035 formpost (including a file upload part) was aborted before the whole file 8433 - Based on Fedor Karpelevitch's formpost path basename patch, file parts in 8805 into the huge prebuilt chunk. This enables libcurl to formpost files that is 10520 - Antoine Calando found a segfault when doing multi-part/formpost using 11158 like the boundary string used by curl when doing a multi-part/formpost. We 12308 - Gustaf Hui wrote an excellent formpost example that used the multi 13794 o curl_formadd() is a new formpost building function that is introduced to
|