Home | History | Annotate | Download | only in linux

Lines Matching refs:curl_

69     (*easy_setopt_)(curl_, CURLOPT_PROXY, proxy_host.c_str());
75 (*easy_setopt_)(curl_, CURLOPT_PROXYUSERPWD, proxy_userpwd.c_str());
116 (*easy_setopt_)(curl_, CURLOPT_URL, url.c_str());
124 (*easy_setopt_)(curl_, CURLOPT_HTTPPOST, formpost_);
127 (*easy_setopt_)(curl_, CURLOPT_WRITEFUNCTION, WriteCallback);
128 (*easy_setopt_)(curl_, CURLOPT_WRITEDATA,
133 (*easy_setopt_)(curl_, CURLOPT_HEADERFUNCTION, WriteCallback);
134 (*easy_setopt_)(curl_, CURLOPT_HEADERDATA,
139 err_code = (*easy_perform_)(curl_);
144 (*easy_getinfo_)(curl_, CURLINFO_RESPONSE_CODE, http_status_code);
157 (*easy_cleanup_)(curl_);
177 curl_ = (*easy_init_)();
181 if (!curl_) {
191 (*easy_setopt_)(curl_, CURLOPT_HTTPHEADER, headerlist_);