Home
last modified time | relevance | path

Searched refs:EasySetOptInt (Results 1 – 7 of 7) sorted by relevance

/external/libbrillo/brillo/http/
Dhttp_transport_curl_unittest.cc38 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_SSL_VERIFYPEER, 1)) in SetUp()
40 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_SSL_VERIFYHOST, 2)) in SetUp()
67 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_HTTPGET, 1)) in TEST_F()
85 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_NOBODY, 1)) in TEST_F()
99 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_UPLOAD, 1)) in TEST_F()
113 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_POST, 1)) in TEST_F()
129 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_POST, 1)) in TEST_F()
149 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_HTTPGET, 1)) in TEST_F()
172 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_SSL_VERIFYPEER, 1)) in SetUp()
174 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_SSL_VERIFYHOST, 2)) in SetUp()
[all …]
Dhttp_transport_curl.cc141 curl_interface_->EasySetOptInt(curl_handle, CURLOPT_SSL_VERIFYPEER, 1); in CreateConnection()
145 curl_interface_->EasySetOptInt(curl_handle, CURLOPT_SSL_VERIFYHOST, 2); in CreateConnection()
162 code = curl_interface_->EasySetOptInt( in CreateConnection()
171 code = curl_interface_->EasySetOptInt(curl_handle, CURLOPT_HTTPGET, 1); in CreateConnection()
173 code = curl_interface_->EasySetOptInt(curl_handle, CURLOPT_NOBODY, 1); in CreateConnection()
175 code = curl_interface_->EasySetOptInt(curl_handle, CURLOPT_UPLOAD, 1); in CreateConnection()
178 code = curl_interface_->EasySetOptInt(curl_handle, CURLOPT_POST, 1); in CreateConnection()
Dcurl_api.h31 virtual CURLcode EasySetOptInt(CURL* curl, CURLoption option, int value) = 0;
143 CURLcode EasySetOptInt(CURL* curl, CURLoption option, int value) override;
Dmock_curl_api.h25 MOCK_METHOD3(EasySetOptInt, CURLcode(CURL*, CURLoption, int));
Dhttp_connection_curl_unittest.cc187 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_VERBOSE, 1)) in TEST_F()
250 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_VERBOSE, 1)) in TEST_F()
Dcurl_api.cc43 CURLcode CurlApi::EasySetOptInt(CURL* curl, CURLoption option, int value) { in EasySetOptInt() function in brillo::http::CurlApi
Dhttp_connection_curl.cc94 curl_interface_->EasySetOptInt(curl_handle_, CURLOPT_VERBOSE, 1); in PrepareRequest()