HomeSort by relevance Sort by last modified time
    Searched full:curl_formadd (Results 1 - 25 of 42) sorted by null

1 2

  /external/curl/tests/unit/
unit1308.c 50 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name",
53 fail_unless(rc == 0, "curl_formadd returned error");
55 /* after the first curl_formadd when there's a single entry, both pointers
59 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "htmlcode",
63 fail_unless(rc == 0, "curl_formadd returned error");
65 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name_for_ptrcontent",
68 fail_unless(rc == 0, "curl_formadd returned error");
81 rc = curl_formadd(&post, &last,
87 fail_unless(rc == 0, "curl_formadd returned error");
  /external/curl/tests/data/
test1308 5 curl_formadd
test1404 108 curl_formadd(&post1, &postend,
112 curl_formadd(&post1, &postend,
test1135 33 CURL_EXTERN CURLFORMcode curl_formadd(struct curl_httppost **httppost,
  /external/curl/tests/libtest/
lib554.c 83 formrc = curl_formadd(&formpost,
93 formrc = curl_formadd(&formpost,
103 printf("curl_formadd(1) = %d\n", (int)formrc);
112 formrc = curl_formadd(&formpost,
120 printf("curl_formadd(1) = %d\n", (int)formrc);
123 formrc = curl_formadd(&formpost,
137 printf("curl_formadd(2) = %d\n", (int)formrc);
140 formrc = curl_formadd(&formpost,
153 printf("curl_formadd(3) = %d\n", (int)formrc);
155 formrc = curl_formadd(&formpost, &lastptr
    [all...]
  /external/curl/docs/libcurl/
curl_formfree.3 44 .BR curl_formadd "(3) "
index.html 37 <br><a href="curl_formadd.html">curl_formadd</A>
curl_formadd.3 22 .TH curl_formadd 3 "24 June 2002" "libcurl 7.9.8" "libcurl Manual"
24 curl_formadd - add a section to a multipart/formdata HTTP POST
28 .BI "CURLFORMcode curl_formadd(struct curl_httppost ** " firstitem,
32 curl_formadd() is used to append sections when building a multipart/formdata
154 Another possibility to send options to curl_formadd() is the
195 curl_formadd(&post, &last, CURLFORM_COPYNAME, "name",
199 curl_formadd(&post, &last, CURLFORM_COPYNAME, "htmlcode",
204 curl_formadd(&post, &last, CURLFORM_COPYNAME, "name_for_ptrcontent",
208 curl_formadd(&post, &last, CURLFORM_PTRNAME, namebuffer,
213 curl_formadd(&post, &last, CURLFORM_COPYNAME, "html_code_with_hole"
    [all...]
Makefile.am 29 curl_formadd.3 curl_formfree.3 curl_getdate.3 curl_getenv.3 \
48 curl_easy_duphandle.html curl_formadd.html curl_formfree.html \
69 curl_easy_duphandle.pdf curl_formadd.pdf curl_formfree.pdf \
curl_formget.3 70 .BR curl_formadd "(3) "
  /external/curl/docs/libcurl/opts/
CURLOPT_HTTPPOST.3 53 curl_formadd(&formpost,
60 curl_formadd(&formpost,
67 curl_formadd(&formpost,
79 .BR curl_formadd "(3), " curl_formfree "(3), "
CURLOPT_POSTFIELDS.3 
  /external/curl/lib/
libcurl.def 34 curl_formadd @ 26 ;
  /external/curl/src/
tool_formparse.c 138 * This function uses curl_formadd to fulfill it's job. Is heavily based on
257 /* if type == NULL curl_formadd takes care of the problem */
292 if(curl_formadd(httppost, last_post,
295 warnf(config->global, "curl_formadd failed!\n");
325 if(curl_formadd(httppost, last_post,
327 warnf(config->global, "curl_formadd failed, possibly the file %s is "
336 warnf(config->global, "curl_formadd failed!\n");
345 if(curl_formadd(httppost, last_post,
347 warnf(config->global, "curl_formadd failed!\n");
  /external/google-breakpad/src/common/linux/
http_upload.cc 129 CURLFORMcode (*curl_formadd)(struct curl_httppost **, struct curl_httppost **, ...);
130 *(void**) (&curl_formadd) = dlsym(curl_lib, "curl_formadd");
133 (*curl_formadd)(&formpost, &lastptr,
139 (*curl_formadd)(&formpost, &lastptr,
libcurl_wrapper.h 73 // Stateful pointers for calling into curl_formadd()
  /external/curl/docs/examples/
postit2.c 58 curl_formadd(&formpost,
65 curl_formadd(&formpost,
73 curl_formadd(&formpost,
multi-post.c 47 curl_formadd(&formpost,
54 curl_formadd(&formpost,
61 curl_formadd(&formpost,
  /external/curl/packages/Symbian/bwins/
libcurlu.def 14 curl_formadd @ 13 NONAME
  /external/curl/packages/Symbian/eabi/
libcurlu.def 14 curl_formadd @ 13 NONAME
  /external/curl/packages/vms/
gnv_libcurl_symbols.opt 64 SYMBOL_VECTOR=(curl_formadd=PROCEDURE)
65 SYMBOL_VECTOR=(CURL_FORMADD/curl_formadd=PROCEDURE)
  /external/curl/packages/EPM/
curl.list.in 34 f 0644 cowo pppusers ${mandir}/man3/curl_formadd.3 ./docs/curl_formadd.3
  /external/curl/docs/
ROADMAP.md 62 curl_formadd()
65 make sure there's an easy handle passed in to `curl_formadd()`,
  /external/libmicrohttpd/src/testzzuf/
test_post_form.c 158 curl_formadd (&post, &last, CURLFORM_COPYNAME, "name",
160 curl_formadd (&post, &last, CURLFORM_COPYNAME, "project",
  /external/libmicrohttpd/src/testcurl/
test_postform.c 165 curl_formadd (&post, &last, CURLFORM_COPYNAME, "name",
167 curl_formadd (&post, &last, CURLFORM_COPYNAME, "project",

Completed in 251 milliseconds

1 2