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() 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 …]
|
D | http_transport_curl.cc | 141 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()
|
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()
|