Home | History | Annotate | Download | only in unit

Lines Matching defs:post

45   struct curl_httppost* post = NULL;
50 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name",
57 fail_unless(post == last, "post and last weren't the same");
59 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "htmlcode",
65 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name_for_ptrcontent",
70 rc = curl_formget(post, &total_size, print_httppost_callback);
76 curl_formfree(post);
79 post = last = NULL;
81 rc = curl_formadd(&post, &last,
89 rc = curl_formget(post, &total_size, print_httppost_callback);
93 curl_formfree(post);