Home | History | Annotate | Download | only in http

Lines Matching defs:Entry

23 // For each realm the cache stores a HttpAuthCache::Entry, which holds:
32 class Entry;
34 // Find the realm entry on server |origin| for realm |realm|.
37 // returns - the matched entry or NULL.
38 Entry* LookupByRealm(const GURL& origin, const std::string& realm);
40 // Find the realm entry on server |origin| whose protection space includes
46 // returns - the matched entry or NULL.
47 Entry* LookupByPath(const GURL& origin, const std::string& path);
49 // Add a realm entry on server |origin| for realm |handler->realm()|, If an
50 // entry for this realm already exists, update it rather than replace it --
58 // returns - the entry that was just added/updated.
59 Entry* Add(const GURL& origin,
65 // Remove realm entry on server |origin| for realm |realm| if one exists
71 // returns - true if an entry was removed.
85 typedef std::list<Entry> EntryList;
89 // An authentication realm entry.
90 class HttpAuthCache::Entry {
121 Entry() {}