Lines Matching refs:post
48 struct curl_httppost *post = NULL;
53 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name",
60 fail_unless(post == last, "post and last weren't the same");
62 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "htmlcode",
68 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name_for_ptrcontent",
73 rc = curl_formget(post, &total_size, print_httppost_callback);
79 curl_formfree(post);
82 post = last = NULL;
84 rc = curl_formadd(&post, &last,
92 rc = curl_formget(post, &total_size, print_httppost_callback);
96 curl_formfree(post);