Searched defs:rcCurl (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Runtime/common/misc/
H A Dhttp.cpp79 #define CURL_FAILED(rcCurl) (RT_UNLIKELY(rcCurl != CURLE_OK))
82 #define RTHTTP_VALID_RETURN_RC(hHttp, rcCurl) \
84 AssertPtrReturn((hHttp), (rcCurl)); \
85 AssertReturn((hHttp)->u32Magic == RTHTTP_MAGIC, (rcCurl)); \
103 CURLcode rcCurl = curl_global_init(CURL_GLOBAL_ALL); local
104 if (CURL_FAILED(rcCurl))
207 int rcCurl; local
210 rcCurl = curl_easy_setopt(pHttpInt->pCurl, CURLOPT_PROXY, &szProxy[sizeof("http://") - 1]);
211 if (CURL_FAILED(rcCurl))
237 int rcCurl = curl_easy_setopt(pHttpInt->pCurl, CURLOPT_PROXY, pcszProxy); local
280 int rcCurl = curl_easy_setopt(pHttpInt->pCurl, CURLOPT_HTTPHEADER, pHeaders); local
368 rtHttpGetCalcStatus(PRTHTTPINTERNAL pHttpInt, int rcCurl) argument
454 int rcCurl = curl_easy_setopt(pHttpInt->pCurl, CURLOPT_URL, pcszUrl); local
542 int rcCurl = curl_easy_setopt(pHttpInt->pCurl, CURLOPT_URL, pszUrl); local
[all...]

Completed in 42 milliseconds