Home | History | Annotate | Download | only in libtest

Lines Matching defs:res

32   int res = CURLE_OK;
41 res = curl_easy_getinfo(curl, CURLINFO_FILETIME, &filetime);
42 if(res) {
44 __FILE__, __LINE__, res, curl_easy_strerror(res));
50 res = CURLE_FAILED_INIT;
57 res = curl_easy_perform(curl);
58 if(res) {
60 __FILE__, __LINE__, res, curl_easy_strerror(res));
67 res = curl_easy_getinfo(curl, CURLINFO_FILETIME, &filetime);
68 if(res) {
70 __FILE__, __LINE__, res, curl_easy_strerror(res));
77 res = CURLE_HTTP_RETURNED_ERROR;
88 res = CURLE_FAILED_INIT;
92 res = curl_easy_getinfo(dupe, CURLINFO_FILETIME, &filetime);
93 if(res) {
95 __FILE__, __LINE__, res, curl_easy_strerror(res));
101 res = CURLE_FAILED_INIT;
111 res = curl_easy_getinfo(curl, CURLINFO_FILETIME, &filetime);
112 if(res) {
114 __FILE__, __LINE__, res, curl_easy_strerror(res));
120 res = CURLE_FAILED_INIT;
128 return res;