HomeSort by relevance Sort by last modified time
    Searched refs:EasySetOptInt (Results 1 - 7 of 7) sorted by null

  /external/libbrillo/brillo/http/
http_transport_curl_unittest.cc 38 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_SSL_VERIFYPEER, 1))
40 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_SSL_VERIFYHOST, 2))
67 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_HTTPGET, 1))
85 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_NOBODY, 1))
99 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_UPLOAD, 1))
113 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_POST, 1))
129 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_POST, 1))
149 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_HTTPGET, 1))
172 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_SSL_VERIFYPEER, 1))
174 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_SSL_VERIFYHOST, 2)
    [all...]
mock_curl_api.h 25 MOCK_METHOD3(EasySetOptInt, CURLcode(CURL*, CURLoption, int));
http_transport_curl.cc 141 curl_interface_->EasySetOptInt(curl_handle, CURLOPT_SSL_VERIFYPEER, 1);
145 curl_interface_->EasySetOptInt(curl_handle, CURLOPT_SSL_VERIFYHOST, 2);
162 code = curl_interface_->EasySetOptInt(
171 code = curl_interface_->EasySetOptInt(curl_handle, CURLOPT_HTTPGET, 1);
173 code = curl_interface_->EasySetOptInt(curl_handle, CURLOPT_NOBODY, 1);
175 code = curl_interface_->EasySetOptInt(curl_handle, CURLOPT_UPLOAD, 1);
178 code = curl_interface_->EasySetOptInt(curl_handle, CURLOPT_POST, 1);
curl_api.h 31 virtual CURLcode EasySetOptInt(CURL* curl, CURLoption option, int value) = 0;
132 CURLcode EasySetOptInt(CURL* curl, CURLoption option, int value) override;
http_connection_curl_unittest.cc 187 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_VERBOSE, 1))
250 EXPECT_CALL(*curl_api_, EasySetOptInt(handle_, CURLOPT_VERBOSE, 1))
curl_api.cc 43 CURLcode CurlApi::EasySetOptInt(CURL* curl, CURLoption option, int value) {
http_connection_curl.cc 94 curl_interface_->EasySetOptInt(curl_handle_, CURLOPT_VERBOSE, 1);

Completed in 2238 milliseconds