Lines Matching defs:res
104 CURLcode res;
107 res = curl_easy_perform(curl);
108 if(res != CURLE_OK) {
109 fprintf(stderr, "curl_easy_perform() failed with %d\n", (int)res);
113 res = curl_easy_getinfo(curl, CURLINFO_NUM_CONNECTS, &connections);
114 if(res != CURLE_OK) {
134 int res = TEST_ERR_FAILURE;
160 res = perform_and_check_connections(curl,
162 if(res != TEST_ERR_SUCCESS) {
168 res = perform_and_check_connections(curl,
170 if(res != TEST_ERR_SUCCESS) {
178 res = perform_and_check_connections(curl,
180 if(res != TEST_ERR_SUCCESS) {
186 res = perform_and_check_connections(curl,
188 if(res != TEST_ERR_SUCCESS) {
192 res = TEST_ERR_SUCCESS;
200 return (int)res;