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

  /external/chromium_org/net/http/
http_security_headers.h 29 bool NET_EXPORT_PRIVATE ParseHSTSHeader(const std::string& value,
http_security_headers_unittest.cc 58 ParseHSTSHeader(std::string(), &max_age, &include_subdomains));
59 EXPECT_FALSE(ParseHSTSHeader(" ", &max_age, &include_subdomains));
60 EXPECT_FALSE(ParseHSTSHeader("abc", &max_age, &include_subdomains));
61 EXPECT_FALSE(ParseHSTSHeader(" abc", &max_age, &include_subdomains));
62 EXPECT_FALSE(ParseHSTSHeader(" abc ", &max_age, &include_subdomains));
63 EXPECT_FALSE(ParseHSTSHeader("max-age", &max_age, &include_subdomains));
64 EXPECT_FALSE(ParseHSTSHeader(" max-age", &max_age,
66 EXPECT_FALSE(ParseHSTSHeader(" max-age ", &max_age,
68 EXPECT_FALSE(ParseHSTSHeader("max-age=", &max_age, &include_subdomains));
69 EXPECT_FALSE(ParseHSTSHeader(" max-age=", &max_age
    [all...]
http_security_headers.cc 167 bool ParseHSTSHeader(const std::string& value,
transport_security_state.cc 628 if (ParseHSTSHeader(value, &max_age, &domain_state.sts.include_subdomains)) {

Completed in 52 milliseconds