Lines Matching refs:res
34 CURLcode res = CURLE_OK;
44 res = curl_easy_getinfo(curl, CURLINFO_PROTOCOL, &protocol);
46 if(res) {
48 __FILE__, __LINE__, res, curl_easy_strerror(res));
54 res = CURLE_FAILED_INIT;
60 res = curl_easy_perform(curl);
61 if(res) {
63 __FILE__, __LINE__, res, curl_easy_strerror(res));
71 res = curl_easy_getinfo(curl, CURLINFO_PROTOCOL, &protocol);
73 if(res) {
75 __FILE__, __LINE__, res, curl_easy_strerror(res));
82 res = CURLE_HTTP_RETURNED_ERROR;
93 res = CURLE_FAILED_INIT;
98 res = curl_easy_getinfo(dupe, CURLINFO_PROTOCOL, &protocol);
100 if(res) {
102 __FILE__, __LINE__, res, curl_easy_strerror(res));
108 res = CURLE_FAILED_INIT;
119 res = curl_easy_getinfo(curl, CURLINFO_PROTOCOL, &protocol);
121 if(res) {
123 __FILE__, __LINE__, res, curl_easy_strerror(res));
129 res = CURLE_FAILED_INIT;
137 return (int)res;