Lines Matching refs:res
34 CURLcode res = CURLE_OK; in test() local
42 res = curl_easy_perform(curl); in test()
43 if(res) { in test()
45 __FILE__, __LINE__, res, curl_easy_strerror(res)); in test()
49 res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &httpcode); in test()
50 if(res) { in test()
52 __FILE__, __LINE__, res, curl_easy_strerror(res)); in test()
58 res = CURLE_HTTP_RETURNED_ERROR; in test()
65 res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &httpcode); in test()
66 if(res) { in test()
68 __FILE__, __LINE__, res, curl_easy_strerror(res)); in test()
74 res = CURLE_HTTP_RETURNED_ERROR; in test()
81 return res; in test()