Lines Matching refs:cerr
634 CURLcode cerr;
636 cerr = curl_easy_setopt(curl_hdl, CURLOPT_URL, uri);
637 if (cerr != CURLE_OK)
639 cerr = curl_easy_setopt(curl_hdl, CURLOPT_FAILONERROR, 1L);
640 if (cerr != CURLE_OK)
642 cerr = curl_easy_setopt(curl_hdl, CURLOPT_WRITEFUNCTION,
644 if (cerr != CURLE_OK)
647 cerr = curl_easy_setopt(curl_hdl, CURLOPT_WRITEDATA,
649 if (cerr != CURLE_OK)
651 cerr = curl_easy_perform(curl_hdl);
657 if (cerr != 0) {
660 uri, curl_easy_strerror(cerr));