Lines Matching refs:post
48 struct curl_httppost *post = NULL; variable
54 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name",
61 fail_unless(post == last, "post and last weren't the same");
64 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "htmlcode",
71 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name_for_ptrcontent",
77 res = curl_formget(post, &total_size, print_httppost_callback);
84 curl_formfree(post);
88 post = last = NULL;
91 rc = curl_formadd(&post, &last,
100 res = curl_formget(post, &total_size, print_httppost_callback);
106 curl_formfree(post);