/external/chromium/net/disk_cache/ |
D | backend_impl.cc | 177 return BackendImpl::CreateBackend(full_path, force, max_bytes, type, kNone); in CreateCacheBackend() 218 Backend* BackendImpl::CreateBackend(const FilePath& full_path, bool force, in CreateBackend() 221 BackendImpl* cache = new BackendImpl(full_path); in CreateBackend() 237 cache = new BackendImpl(full_path); in CreateBackend() 249 bool BackendImpl::Init() { in Init() 267 &BackendImpl::OnStatsTimer); in Init() 323 BackendImpl::~BackendImpl() { in ~BackendImpl() 339 int32 BackendImpl::GetEntryCount() const { in GetEntryCount() 354 bool BackendImpl::OpenEntry(const std::string& key, Entry** entry) { in OpenEntry() 383 int BackendImpl::OpenEntry(const std::string& key, Entry** entry, in OpenEntry() [all …]
|
D | backend_impl.h | 35 class BackendImpl : public Backend { 38 explicit BackendImpl(const FilePath& path) in BackendImpl() function 45 BackendImpl(const FilePath& path, uint32 mask) in BackendImpl() function 51 ~BackendImpl(); 302 base::RepeatingTimer<BackendImpl> timer_; // Usage timer. 304 ScopedRunnableMethodFactory<BackendImpl> factory_; 306 DISALLOW_EVIL_CONSTRUCTORS(BackendImpl);
|
D | stats.h | 17 class BackendImpl; variable 53 bool Init(BackendImpl* backend, uint32* storage_addr); 83 BackendImpl* backend_;
|
D | eviction.h | 16 class BackendImpl; variable 26 void Init(BackendImpl* backend); 66 BackendImpl* backend_;
|
D | disk_cache_test_base.cc | 62 cache_ = disk_cache::BackendImpl::CreateBackend(path, force_creation_, size_, in InitDiskCache() 69 cache_impl_ = new disk_cache::BackendImpl(path, mask_); in InitDiskCacheImpl() 71 cache_impl_ = new disk_cache::BackendImpl(path); in InitDiskCacheImpl()
|
D | stats.cc | 68 bool LoadStats(BackendImpl* backend, Addr address, OnDiskStats* stats) { in LoadStats() 89 bool StoreStats(BackendImpl* backend, Addr address, OnDiskStats* stats) { in StoreStats() 99 bool CreateStats(BackendImpl* backend, Addr* address, OnDiskStats* stats) { in CreateStats() 113 bool Stats::Init(BackendImpl* backend, uint32* storage_addr) { in Init()
|
D | rankings.h | 19 class BackendImpl; variable 111 bool Init(BackendImpl* backend, bool count_lists); 196 BackendImpl* backend_;
|
D | entry_impl.h | 15 class BackendImpl; variable 32 EntryImpl(BackendImpl* backend, Addr address); 182 BackendImpl* backend_; // Back pointer to the cache.
|
D | disk_cache_test_base.h | 17 class BackendImpl; variable 78 disk_cache::BackendImpl* cache_impl_;
|
D | disk_cache_test_util.cc | 80 scoped_ptr<disk_cache::BackendImpl> cache(new disk_cache::BackendImpl(path)); in CheckCacheIntegrity()
|
D | stress_cache.cc | 80 disk_cache::BackendImpl* cache = new disk_cache::BackendImpl(path); in StressTheCache()
|
D | sparse_control.cc | 53 ChildrenDeleter(disk_cache::BackendImpl* backend, const std::string& name) in ChildrenDeleter() 69 disk_cache::BackendImpl* backend_;
|
D | eviction.cc | 59 void Eviction::Init(BackendImpl* backend) { in Init()
|
D | backend_unittest.cc | 1433 scoped_ptr<disk_cache::BackendImpl> cache; in TEST_F() 1434 cache.reset(new disk_cache::BackendImpl(path)); in TEST_F()
|
D | rankings.cc | 178 bool Rankings::Init(BackendImpl* backend, bool count_lists) { in Init()
|
D | entry_impl.cc | 82 EntryImpl::EntryImpl(BackendImpl* backend, Addr address) in EntryImpl()
|
/external/chromium/net/tools/dump_cache/ |
D | cache_dumper.h | 44 CacheDumper(disk_cache::BackendImpl* cache) : cache_(cache) {}; in CacheDumper() 53 disk_cache::BackendImpl* cache_;
|
D | upgrade.cc | 247 scoped_ptr<disk_cache::BackendImpl> cache_; 305 cache_.reset(new disk_cache::BackendImpl(FilePath::FromWStringHack(path_))); in DoInit() 513 cache_.reset(new disk_cache::BackendImpl(FilePath::FromWStringHack(path))); in SlaveSM() 546 scoped_ptr<disk_cache::BackendImpl> cache_;
|
/external/chromium/net/tools/crash_cache/ |
D | crash_cache.cc | 216 disk_cache::BackendImpl* cache = in LoadOperations() 217 new disk_cache::BackendImpl(path, 0xf); in LoadOperations()
|