Home
last modified time | relevance | path

Searched refs:formpost (Results 1 – 17 of 17) sorted by relevance

/external/curl/tests/libtest/
Dlib554.c73 struct curl_httppost *formpost=NULL; in once() local
83 formrc = curl_formadd(&formpost, in once()
93 formrc = curl_formadd(&formpost, in once()
112 formrc = curl_formadd(&formpost, in once()
123 formrc = curl_formadd(&formpost, in once()
140 formrc = curl_formadd(&formpost, in once()
155 formrc = curl_formadd(&formpost, &lastptr, in once()
167 curl_formfree(formpost); in once()
185 test_setopt(curl, CURLOPT_HTTPPOST, formpost); in once()
202 curl_formfree(formpost); in once()
/external/curl/docs/examples/
Dpostit2.c50 struct curl_httppost *formpost=NULL; in main() local
58 curl_formadd(&formpost, in main()
65 curl_formadd(&formpost, in main()
73 curl_formadd(&formpost, in main()
89 curl_easy_setopt(curl, CURLOPT_HTTPPOST, formpost); in main()
102 curl_formfree(formpost); in main()
Dmulti-post.c40 struct curl_httppost *formpost=NULL; in main() local
47 curl_formadd(&formpost, in main()
54 curl_formadd(&formpost, in main()
61 curl_formadd(&formpost, in main()
80 curl_easy_setopt(curl, CURLOPT_HTTPPOST, formpost); in main()
165 curl_formfree(formpost); in main()
/external/google-breakpad/src/common/linux/
Dhttp_upload.cc126 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/
Dtest130821 formpost unit tests
27 Piece of the file that is to uploaded as a formpost
Dtest4119 HTTP formpost with missing file
Dtest58727 HTTP multi-part formpost with aborted read callback
Dtest15824 HTTP multipart formpost with only a 100 reply
Dtest16327 HTTP multipart formpost with contents from a file
Dtest16627 HTTP formpost a file with spaces in name
Dtest30430 HTTPS multipart formpost
Dtest17328 HTTP RFC1867-formpost a file from stdin with "faked" filename
Dtest55450 HTTP multi-part formpost using read callback for the file part
/external/curl/docs/
DFEATURES47 - multipart formpost (RFC1867-style)
DTODO70 5.9 Add easy argument to formpost functions
142 18.5 provide formpost headers
567 5.9 Add easy argument to formpost functions
926 18.5 provide formpost headers
DMANUAL317 (page located at http://www.formpost.com/getthis/
331 http://www.formpost.com/getthis/post.cgi
/external/curl/
DCHANGES.06241 (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