Home | History | Annotate | Download | only in libtest

Lines Matching defs:res

32   int res = CURLE_OK;
40 res = curl_easy_perform(curl);
41 if(res) {
43 __FILE__, __LINE__, res, curl_easy_strerror(res));
47 res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &httpcode);
48 if(res) {
50 __FILE__, __LINE__, res, curl_easy_strerror(res));
56 res = CURLE_HTTP_RETURNED_ERROR;
63 res = curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &httpcode);
64 if(res) {
66 __FILE__, __LINE__, res, curl_easy_strerror(res));
72 res = CURLE_HTTP_RETURNED_ERROR;
79 return res;