Searched refs:EasySetOptStr (Results 1 – 5 of 5) sorted by relevance
/external/libbrillo/brillo/http/ |
D | http_transport_curl_unittest.cc | 36 EXPECT_CALL(*curl_api_, EasySetOptStr(handle_, CURLOPT_CAPATH, _)) in SetUp() 59 EasySetOptStr(handle_, CURLOPT_URL, "http://foo.bar/get")) in TEST_F() 62 EasySetOptStr(handle_, CURLOPT_USERAGENT, "User Agent")) in TEST_F() 65 EasySetOptStr(handle_, CURLOPT_REFERER, "http://foo.bar/baz")) in TEST_F() 83 EasySetOptStr(handle_, CURLOPT_URL, "http://foo.bar/head")) in TEST_F() 97 EasySetOptStr(handle_, CURLOPT_URL, "http://foo.bar/put")) in TEST_F() 111 EasySetOptStr(handle_, CURLOPT_URL, "http://www.foo.bar/post")) in TEST_F() 127 EasySetOptStr(handle_, CURLOPT_URL, "http://www.foo.bar/patch")) in TEST_F() 135 EasySetOptStr(handle_, CURLOPT_CUSTOMREQUEST, request_type::kPatch)) in TEST_F() 147 EasySetOptStr(handle_, CURLOPT_URL, "http://foo.bar/get")) in TEST_F() [all …]
|
D | http_transport_curl.cc | 133 CURLcode code = curl_interface_->EasySetOptStr(curl_handle, CURLOPT_URL, url); in CreateConnection() 136 code = curl_interface_->EasySetOptStr(curl_handle, CURLOPT_CAPATH, in CreateConnection() 148 code = curl_interface_->EasySetOptStr( in CreateConnection() 153 curl_interface_->EasySetOptStr(curl_handle, CURLOPT_REFERER, referer); in CreateConnection() 156 code = curl_interface_->EasySetOptStr(curl_handle, CURLOPT_PROXY, proxy_); in CreateConnection() 184 code = curl_interface_->EasySetOptStr( in CreateConnection()
|
D | curl_api.h | 32 virtual CURLcode EasySetOptStr(CURL* curl, 144 CURLcode EasySetOptStr(CURL* curl,
|
D | mock_curl_api.h | 26 MOCK_METHOD3(EasySetOptStr, CURLcode(CURL*, CURLoption, const std::string&));
|
D | curl_api.cc | 52 CURLcode CurlApi::EasySetOptStr(CURL* curl, in EasySetOptStr() function in brillo::http::CurlApi
|