Lines Matching refs:curlHandlePtr
54 CURL *curlHandlePtr = curl_easy_init();
56 curl_easy_setopt(curlHandlePtr, CURLOPT_VERBOSE, 1L);
58 curl_easy_setopt(curlHandlePtr, CURLOPT_URL, i_remoteFile);
59 curl_easy_setopt(curlHandlePtr, CURLOPT_NOPROGRESS, 1);
60 curl_easy_setopt(curlHandlePtr, CURLOPT_NOBODY, 1);
61 curl_easy_setopt(curlHandlePtr, CURLOPT_HEADER, 1);
62 curl_easy_setopt(curlHandlePtr, CURLOPT_FILETIME, 1);
64 result = curl_easy_perform(curlHandlePtr);
66 result = curl_easy_getinfo(curlHandlePtr,
73 curl_easy_cleanup(curlHandlePtr);