Home
last modified time | relevance | path

Searched refs:GetResponseHeader (Results 1 – 9 of 9) sorted by relevance

/external/libbrillo/brillo/http/
Dhttp_connection_curl_unittest.cc314 connection_->GetResponseHeader(response_header::kContentLength)); in TEST_F()
316 connection_->GetResponseHeader(response_header::kContentType)); in TEST_F()
317 EXPECT_EQ("baz", connection_->GetResponseHeader("X-Foo")); in TEST_F()
Dmock_connection.h31 MOCK_CONST_METHOD1(GetResponseHeader, std::string(const std::string&));
Dhttp_connection.h86 virtual std::string GetResponseHeader(
Dhttp_connection_fake.h40 std::string GetResponseHeader(const std::string& header_name) const override;
Dhttp_connection_curl.h44 std::string GetResponseHeader(const std::string& header_name) const override;
Dhttp_connection_fake.cc103 std::string Connection::GetResponseHeader( in GetResponseHeader() function in brillo::http::fake::Connection
Dhttp_request_unittest.cc173 GetResponseHeader(response_header::kContentType)) in TEST_F()
Dhttp_connection_curl.cc191 std::string Connection::GetResponseHeader( in GetResponseHeader() function in brillo::http::curl::Connection
Dhttp_request.cc351 return connection_->GetResponseHeader(header_name); in GetHeader()