Home
last modified time | relevance | path

Searched refs:curl_ (Results 1 – 2 of 2) sorted by relevance

/external/google-breakpad/src/common/linux/
Dlibcurl_wrapper.cc69 (*easy_setopt_)(curl_, CURLOPT_PROXY, proxy_host.c_str()); in SetProxy()
75 (*easy_setopt_)(curl_, CURLOPT_PROXYUSERPWD, proxy_userpwd.c_str()); in SetProxy()
116 (*easy_setopt_)(curl_, CURLOPT_URL, url.c_str()); in SendRequest()
124 (*easy_setopt_)(curl_, CURLOPT_HTTPPOST, formpost_); in SendRequest()
127 (*easy_setopt_)(curl_, CURLOPT_WRITEFUNCTION, WriteCallback); in SendRequest()
128 (*easy_setopt_)(curl_, CURLOPT_WRITEDATA, in SendRequest()
133 (*easy_setopt_)(curl_, CURLOPT_HEADERFUNCTION, WriteCallback); in SendRequest()
134 (*easy_setopt_)(curl_, CURLOPT_HEADERDATA, in SendRequest()
139 err_code = (*easy_perform_)(curl_); in SendRequest()
144 (*easy_getinfo_)(curl_, CURLINFO_RESPONSE_CODE, http_status_code); in SendRequest()
[all …]
Dlibcurl_wrapper.h69 CURL *curl_; // Pointer for handle for CURL calls. variable