Lines Matching refs:CURLcode
43 CURLcode CurlApi::EasySetOptInt(CURL* curl, CURLoption option, int value) { in EasySetOptInt()
52 CURLcode CurlApi::EasySetOptStr(CURL* curl, in EasySetOptStr()
60 CURLcode CurlApi::EasySetOptPtr(CURL* curl, CURLoption option, void* value) { in EasySetOptPtr()
66 CURLcode CurlApi::EasySetOptCallback(CURL* curl, in EasySetOptCallback()
74 CURLcode CurlApi::EasySetOptOffT(CURL* curl, in EasySetOptOffT()
82 CURLcode CurlApi::EasyPerform(CURL* curl) { in EasyPerform()
86 CURLcode CurlApi::EasyGetInfoInt(CURL* curl, CURLINFO info, int* value) const { in EasyGetInfoInt()
89 CURLcode code = curl_easy_getinfo(curl, info, &data); in EasyGetInfoInt()
95 CURLcode CurlApi::EasyGetInfoDbl(CURL* curl, in EasyGetInfoDbl()
102 CURLcode CurlApi::EasyGetInfoStr(CURL* curl, in EasyGetInfoStr()
107 CURLcode code = curl_easy_getinfo(curl, info, &data); in EasyGetInfoStr()
113 CURLcode CurlApi::EasyGetInfoPtr(CURL* curl, in EasyGetInfoPtr()
121 std::string CurlApi::EasyStrError(CURLcode code) const { in EasyStrError()