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

  /external/chromium_org/net/cookies/
parsed_cookie_unittest.cc 14 ParsedCookie pc("a=b");
22 ParsedCookie pc1("=; path=/; secure;");
24 ParsedCookie pc2("= ; path=/; secure;");
26 ParsedCookie pc3(" =; path=/; secure;");
28 ParsedCookie pc4(" = ; path=/; secure;");
30 ParsedCookie pc5(" ; path=/; secure;");
32 ParsedCookie pc6("; path=/; secure;");
64 ParsedCookie pc("aBc=" + input + " ; path=\"/\" ; httponly ");
80 ParsedCookie pc("BLAHHH; path=/; secure;");
91 ParsedCookie pc("BLAHHH; Path=/; sECuRe; httpONLY; pRIoRitY=hIgH")
    [all...]
parsed_cookie.cc 157 ParsedCookie::ParsedCookie(const std::string& cookie_line)
176 ParsedCookie::~ParsedCookie() {
179 bool ParsedCookie::IsValid() const {
183 CookiePriority ParsedCookie::Priority() const {
188 bool ParsedCookie::SetName(const std::string& name) {
197 bool ParsedCookie::SetValue(const std::string& value) {
206 bool ParsedCookie::SetPath(const std::string& path) {
210 bool ParsedCookie::SetDomain(const std::string& domain)
    [all...]
parsed_cookie.h 17 class NET_EXPORT ParsedCookie {
30 ParsedCookie(const std::string& cookie_line);
31 ~ParsedCookie();
108 // |*_index_| fields in ParsedCookie and is updated to the position where
144 DISALLOW_COPY_AND_ASSIGN(ParsedCookie);
canonical_cookie.cc 67 const ParsedCookie& pc,
131 CanonicalCookie::CanonicalCookie(const GURL& url, const ParsedCookie& pc)
175 const ParsedCookie& pc) {
183 Time CanonicalCookie::CanonExpiration(const ParsedCookie& pc,
215 ParsedCookie parsed_cookie(cookie_line);
259 // Expect valid attribute tokens and values, as defined by the ParsedCookie
261 std::string parsed_name = ParsedCookie::ParseTokenString(name);
264 std::string parsed_value = ParsedCookie::ParseValueString(value);
268 std::string parsed_domain = ParsedCookie::ParseValueString(domain);
277 std::string parsed_path = ParsedCookie::ParseValueString(path)
    [all...]
canonical_cookie.h 21 class ParsedCookie;
44 // in which pre-validation of the ParsedCookie has not been done.
45 CanonicalCookie(const GURL& url, const ParsedCookie& pc);
134 static std::string CanonPath(const GURL& url, const ParsedCookie& pc);
135 static base::Time CanonExpiration(const ParsedCookie& pc,
cookie_monster_perftest.cc 102 ParsedCookie pc(cookie);
113 ParsedCookie pc(cookie);
cookie_monster_store_test.cc 109 ParsedCookie pc(cookie_line);
cookie_monster.h 41 class ParsedCookie;
    [all...]
  /external/chromium_org/chrome/browser/browsing_data/
mock_browsing_data_cookie_helper.cc 38 net::ParsedCookie pc(cookie_line);
browsing_data_cookie_helper_unittest.cc 402 net::ParsedCookie pc("a=1");
  /external/chromium_org/extensions/browser/api/web_request/
web_request_api_helpers.cc 81 typedef std::vector<linked_ptr<net::ParsedCookie> > ParsedResponseCookies;
87 bool ParseCookieLifetime(net::ParsedCookie* cookie,
805 result.push_back(make_linked_ptr(new net::ParsedCookie(value)));
825 net::ParsedCookie* cookie) {
846 static bool DoesResponseCookieMatchFilter(net::ParsedCookie* cookie,
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
cookie_info_view.cc 75 net::ParsedCookie pc(cookie_line);

Completed in 6193 milliseconds