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