Home
last modified time | relevance | path

Searched refs:BackendImpl (Results 1 – 19 of 19) sorted by relevance

/external/chromium/net/disk_cache/
Dbackend_impl.cc177 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 …]
Dbackend_impl.h35 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);
Dstats.h17 class BackendImpl; variable
53 bool Init(BackendImpl* backend, uint32* storage_addr);
83 BackendImpl* backend_;
Deviction.h16 class BackendImpl; variable
26 void Init(BackendImpl* backend);
66 BackendImpl* backend_;
Ddisk_cache_test_base.cc62 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()
Dstats.cc68 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()
Drankings.h19 class BackendImpl; variable
111 bool Init(BackendImpl* backend, bool count_lists);
196 BackendImpl* backend_;
Dentry_impl.h15 class BackendImpl; variable
32 EntryImpl(BackendImpl* backend, Addr address);
182 BackendImpl* backend_; // Back pointer to the cache.
Ddisk_cache_test_base.h17 class BackendImpl; variable
78 disk_cache::BackendImpl* cache_impl_;
Ddisk_cache_test_util.cc80 scoped_ptr<disk_cache::BackendImpl> cache(new disk_cache::BackendImpl(path)); in CheckCacheIntegrity()
Dstress_cache.cc80 disk_cache::BackendImpl* cache = new disk_cache::BackendImpl(path); in StressTheCache()
Dsparse_control.cc53 ChildrenDeleter(disk_cache::BackendImpl* backend, const std::string& name) in ChildrenDeleter()
69 disk_cache::BackendImpl* backend_;
Deviction.cc59 void Eviction::Init(BackendImpl* backend) { in Init()
Dbackend_unittest.cc1433 scoped_ptr<disk_cache::BackendImpl> cache; in TEST_F()
1434 cache.reset(new disk_cache::BackendImpl(path)); in TEST_F()
Drankings.cc178 bool Rankings::Init(BackendImpl* backend, bool count_lists) { in Init()
Dentry_impl.cc82 EntryImpl::EntryImpl(BackendImpl* backend, Addr address) in EntryImpl()
/external/chromium/net/tools/dump_cache/
Dcache_dumper.h44 CacheDumper(disk_cache::BackendImpl* cache) : cache_(cache) {}; in CacheDumper()
53 disk_cache::BackendImpl* cache_;
Dupgrade.cc247 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/
Dcrash_cache.cc216 disk_cache::BackendImpl* cache = in LoadOperations()
217 new disk_cache::BackendImpl(path, 0xf); in LoadOperations()