OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:EasySetOptPtr
(Results
1 - 7
of
7
) sorted by null
/external/libbrillo/brillo/http/
http_connection_curl_unittest.cc
155
EXPECT_CALL(*curl_api_,
EasySetOptPtr
(handle_, CURLOPT_PRIVATE, _))
198
EXPECT_CALL(*curl_api_,
EasySetOptPtr
(handle_, CURLOPT_READDATA, _))
201
EXPECT_CALL(*curl_api_,
EasySetOptPtr
(handle_, CURLOPT_HTTPHEADER, _))
206
EXPECT_CALL(*curl_api_,
EasySetOptPtr
(handle_, CURLOPT_WRITEDATA, _))
212
EXPECT_CALL(*curl_api_,
EasySetOptPtr
(handle_, CURLOPT_HEADERDATA, _))
263
EXPECT_CALL(*curl_api_,
EasySetOptPtr
(handle_, CURLOPT_READDATA, _))
267
EasySetOptPtr
(handle_, CURLOPT_HTTPHEADER, HeadersMatch(headers)))
274
EXPECT_CALL(*curl_api_,
EasySetOptPtr
(handle_, CURLOPT_WRITEDATA, _))
282
EXPECT_CALL(*curl_api_,
EasySetOptPtr
(handle_, CURLOPT_HEADERDATA, _))
http_connection_curl.cc
63
curl_interface_->
EasySetOptPtr
(curl_handle_, CURLOPT_PRIVATE, this);
120
curl_interface_->
EasySetOptPtr
(curl_handle_, CURLOPT_READDATA, this);
132
curl_interface_->
EasySetOptPtr
(
144
curl_interface_->
EasySetOptPtr
(curl_handle_, CURLOPT_WRITEDATA, this);
150
curl_interface_->
EasySetOptPtr
(curl_handle_, CURLOPT_HEADERDATA, this);
mock_curl_api.h
27
MOCK_METHOD3(
EasySetOptPtr
, CURLcode(CURL*, CURLoption, void*));
http_transport_curl_unittest.cc
42
EXPECT_CALL(*curl_api_,
EasySetOptPtr
(handle_, CURLOPT_PRIVATE, _))
115
EXPECT_CALL(*curl_api_,
EasySetOptPtr
(handle_, CURLOPT_POSTFIELDS, nullptr))
131
EXPECT_CALL(*curl_api_,
EasySetOptPtr
(handle_, CURLOPT_POSTFIELDS, nullptr))
176
EXPECT_CALL(*curl_api_,
EasySetOptPtr
(handle_, CURLOPT_PRIVATE, _))
curl_api.h
35
virtual CURLcode
EasySetOptPtr
(CURL* curl,
136
CURLcode
EasySetOptPtr
(CURL* curl, CURLoption option, void* value) override;
curl_api.cc
60
CURLcode CurlApi::
EasySetOptPtr
(CURL* curl, CURLoption option, void* value) {
http_transport_curl.cc
180
code = curl_interface_->
EasySetOptPtr
(
Completed in 44 milliseconds