Searched refs:EasySetOptInt (Results 1 – 7 of 7) sorted by relevance
/external/libbrillo/brillo/http/ |
D | http_transport_curl_unittest.cc | 38 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() 94 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_HTTPGET, 1)) in TEST_F() 115 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_NOBODY, 1)) in TEST_F() 129 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_UPLOAD, 1)) in TEST_F() 143 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_POST, 1)) in TEST_F() 159 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_POST, 1)) in TEST_F() 179 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_HTTPGET, 1)) in TEST_F() 202 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_SSL_VERIFYPEER, 1)) in SetUp() [all …]
|
D | http_transport_curl.cc | 142 curl_interface_->EasySetOptInt(curl_handle, CURLOPT_SSL_VERIFYPEER, 1); in CreateConnection() 146 curl_interface_->EasySetOptInt(curl_handle, CURLOPT_SSL_VERIFYHOST, 2); in CreateConnection() 163 code = curl_interface_->EasySetOptInt( in CreateConnection() 176 code = curl_interface_->EasySetOptInt(curl_handle, CURLOPT_HTTPGET, 1); in CreateConnection() 178 code = curl_interface_->EasySetOptInt(curl_handle, CURLOPT_NOBODY, 1); in CreateConnection() 180 code = curl_interface_->EasySetOptInt(curl_handle, CURLOPT_UPLOAD, 1); in CreateConnection() 183 code = curl_interface_->EasySetOptInt(curl_handle, CURLOPT_POST, 1); in CreateConnection()
|
D | curl_api.h | 31 virtual CURLcode EasySetOptInt(CURL* curl, CURLoption option, int value) = 0; 143 CURLcode EasySetOptInt(CURL* curl, CURLoption option, int value) override;
|
D | mock_curl_api.h | 25 MOCK_METHOD3(EasySetOptInt, CURLcode(CURL*, CURLoption, int));
|
D | http_connection_curl_unittest.cc | 187 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()
|
D | curl_api.cc | 43 CURLcode CurlApi::EasySetOptInt(CURL* curl, CURLoption option, int value) { in EasySetOptInt() function in brillo::http::CurlApi
|
D | http_connection_curl.cc | 94 curl_interface_->EasySetOptInt(curl_handle_, CURLOPT_VERBOSE, 1); in PrepareRequest()
|