Lines Matching refs:rc
52 CURLcode rc = Curl_parse_login_details(input, strlen(input), in test_parse() local
54 fail_unless(rc == CURLE_OK, "Curl_parse_login_details() failed"); in test_parse()
76 CURLcode rc; variable
83 rc = Curl_open(&empty);
84 if(rc)
86 fail_unless(rc == CURLE_OK, "Curl_open() failed");
88 rc = Curl_connect(empty, &async, &protocol_connect);
89 fail_unless(rc == CURLE_URL_MALFORMAT,
96 rc = Curl_connect(empty, &async, &protocol_connect);
97 fail_unless(rc == CURLE_URL_MALFORMAT,
100 rc = Curl_init_userdefined(empty);
101 fail_unless(rc == CURLE_OK, "Curl_userdefined() failed");
103 rc = Curl_init_do(empty, empty->conn);
104 fail_unless(rc == CURLE_OK, "Curl_init_do() failed");
127 rc = Curl_close(&empty);
128 fail_unless(rc == CURLE_OK, "Curl_close() failed");