Home | History | Annotate | Download | only in http

Lines Matching defs:HttpAuthCache

73 HttpAuthCache::HttpAuthCache() {
76 HttpAuthCache::~HttpAuthCache() {
80 HttpAuthCache::Entry* HttpAuthCache::Lookup(const GURL& origin,
103 HttpAuthCache::Entry* HttpAuthCache::LookupByPath(const GURL& origin,
105 HttpAuthCache::Entry* best_match = NULL;
135 HttpAuthCache::Entry* HttpAuthCache::Add(const GURL& origin,
147 HttpAuthCache::Entry* entry = Lookup(origin, realm, scheme);
182 HttpAuthCache::Entry::~Entry() {
185 void HttpAuthCache::Entry::UpdateStaleChallenge(
191 HttpAuthCache::Entry::Entry()
196 void HttpAuthCache::Entry::AddPath(const std::string& path) {
217 bool HttpAuthCache::Entry::HasEnclosingPath(const std::string& dir,
235 bool HttpAuthCache::Remove(const GURL& origin,
252 void HttpAuthCache::Clear() {
256 bool HttpAuthCache::UpdateStaleChallenge(const GURL& origin,
260 HttpAuthCache::Entry* entry = Lookup(origin, realm, scheme);
268 void HttpAuthCache::UpdateAllFrom(const HttpAuthCache& other) {