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

  /external/chromium_org/net/ftp/
ftp_auth_cache.cc 13 const size_t FtpAuthCache::kMaxEntries = 10;
15 FtpAuthCache::Entry::Entry(const GURL& origin,
21 FtpAuthCache::Entry::~Entry() {}
23 FtpAuthCache::FtpAuthCache() {}
25 FtpAuthCache::~FtpAuthCache() {}
27 FtpAuthCache::Entry* FtpAuthCache::Lookup(const GURL& origin) {
35 void FtpAuthCache::Add(const GURL& origin, const AuthCredentials& credentials)
    [all...]
ftp_auth_cache.h 16 // The FtpAuthCache class is a simple cache structure to store authentication
24 class NET_EXPORT_PRIVATE FtpAuthCache {
37 FtpAuthCache();
38 ~FtpAuthCache();
ftp_auth_cache_unittest.cc 15 using net::FtpAuthCache;
34 FtpAuthCache cache;
44 FtpAuthCache::Entry* entry1 = cache.Lookup(origin1);
52 FtpAuthCache::Entry* entry2 = cache.Lookup(origin2);
63 FtpAuthCache::Entry* entry3 = cache.Lookup(origin1);
81 FtpAuthCache cache;
97 FtpAuthCache cache;
103 FtpAuthCache::Entry* entry1 = cache.Lookup(GURL("ftp://HoSt:21"));
110 FtpAuthCache::Entry* entry2 = cache.Lookup(GURL("ftp://HoSt:21"));
123 FtpAuthCache cache
    [all...]
  /external/chromium_org/net/url_request/
ftp_protocol_handler.h 15 class FtpAuthCache;
33 scoped_ptr<FtpAuthCache> ftp_auth_cache_;
ftp_protocol_handler.cc 21 ftp_auth_cache_(new FtpAuthCache) {
url_request_ftp_job.h 25 class FtpAuthCache;
34 FtpAuthCache* ftp_auth_cache);
98 FtpAuthCache* ftp_auth_cache_;
url_request_ftp_job.cc 30 FtpAuthCache* ftp_auth_cache)
395 FtpAuthCache::Entry* cached_auth = NULL;
url_request_ftp_job_unittest.cc 48 FtpAuthCache* GetFtpAuthCache() {
101 FtpAuthCache* ftp_auth_cache)
139 FtpAuthCache ftp_auth_cache_;

Completed in 847 milliseconds