Home | History | Annotate | Download | only in unit

Lines Matching refs:rc

44   int rc;
50 rc = curl_formadd(&post, &last, CURLFORM_COPYNAME, "name",
53 fail_unless(rc == 0, "curl_formadd returned error");
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");
70 rc = curl_formget(post, &total_size, print_httppost_callback);
72 fail_unless(rc == 0, "curl_formget returned error");
81 rc = curl_formadd(&post, &last,
87 fail_unless(rc == 0, "curl_formadd returned error");
89 rc = curl_formget(post, &total_size, print_httppost_callback);
90 fail_unless(rc == 0, "curl_formget returned error");