HomeSort by relevance Sort by last modified time
    Searched refs:BackendImpl (Results 1 - 25 of 50) sorted by null

1 2

  /external/chromium_org/net/disk_cache/v3/
backend_worker.h 26 class NET_EXPORT_PRIVATE BackendImpl : public Backend {
29 BackendImpl(const base::FilePath& path, base::MessageLoopProxy* cache_thread,
55 DISALLOW_COPY_AND_ASSIGN(BackendImpl);
eviction_v3.h 15 class BackendImpl;
19 // integrated with BackendImpl.
25 void Init(BackendImpl* backend);
55 BackendImpl* backend_;
backend_impl_v3.h 42 class NET_EXPORT_PRIVATE BackendImpl : public Backend {
45 BackendImpl(const base::FilePath& path, base::MessageLoopProxy* cache_thread,
48 BackendImpl(const base::FilePath& path, uint32 mask,
50 virtual ~BackendImpl();
129 base::WeakPtr<BackendImpl> GetWeakPtr();
276 scoped_ptr<base::RepeatingTimer<BackendImpl> > timer_; // Usage timer.
278 base::WeakPtrFactory<BackendImpl> ptr_factory_;
280 DISALLOW_COPY_AND_ASSIGN(BackendImpl);
backend_worker.cc 106 BackendImpl::BackendImpl(const base::FilePath& path,
131 int BackendImpl::SyncInit() {
154 timer_.reset(new base::RepeatingTimer<BackendImpl>());
156 &BackendImpl::OnStatsTimer);
236 void BackendImpl::PrepareForRestart() {
255 BackendImpl::~BackendImpl() {
278 void BackendImpl::CleanupCache() {
303 base::FilePath BackendImpl::GetFileName(Addr address) const
    [all...]
backend_impl_v3.cc 81 BackendImpl::BackendImpl(const base::FilePath& path,
106 BackendImpl::BackendImpl(const base::FilePath& path,
132 BackendImpl::~BackendImpl() {
155 int BackendImpl::Init(const CompletionCallback& callback) {
162 int BackendImpl::OpenPrevEntry(void** iter, Entry** prev_entry,
169 bool BackendImpl::SetMaxSize(int max_bytes) {
187 void BackendImpl::SetType(net::CacheType type)
    [all...]
entry_impl_v3.h 16 class BackendImpl;
38 EntryImpl(BackendImpl* backend, Addr address, bool read_only);
204 base::WeakPtr<BackendImpl> backend_; // Back pointer to the cache.
  /external/chromium_org/net/disk_cache/
backend_impl.cc 101 void FinalCleanupCallback(disk_cache::BackendImpl* backend) {
142 BackendImpl::BackendImpl(const base::FilePath& path,
167 BackendImpl::BackendImpl(const base::FilePath& path,
193 BackendImpl::~BackendImpl() {
216 int BackendImpl::Init(const CompletionCallback& callback) {
221 int BackendImpl::SyncInit() {
244 timer_.reset(new base::RepeatingTimer<BackendImpl>());
    [all...]
eviction.h 14 class BackendImpl;
19 // integrated with BackendImpl.
25 void Init(BackendImpl* backend);
72 BackendImpl* backend_;
backend_impl.h 44 class NET_EXPORT_PRIVATE BackendImpl : public Backend {
47 BackendImpl(const base::FilePath& path, base::MessageLoopProxy* cache_thread,
50 BackendImpl(const base::FilePath& path, uint32 mask,
52 virtual ~BackendImpl();
188 base::WeakPtr<BackendImpl> GetWeakPtr();
387 scoped_ptr<base::RepeatingTimer<BackendImpl> > timer_; // Usage timer.
390 base::WeakPtrFactory<BackendImpl> ptr_factory_;
392 DISALLOW_COPY_AND_ASSIGN(BackendImpl);
in_flight_backend_io.h 19 class BackendImpl;
27 BackendIO(InFlightIO* controller, BackendImpl* backend,
121 BackendImpl* backend_;
149 InFlightBackendIO(BackendImpl* backend,
214 BackendImpl* backend_;
rankings.h 19 class BackendImpl;
108 bool Init(BackendImpl* backend, bool count_lists);
205 BackendImpl* backend_;
disk_cache_test_base.h 26 class BackendImpl;
150 disk_cache::BackendImpl* cache_impl_;
disk_cache_test_util.cc 65 scoped_ptr<disk_cache::BackendImpl> cache(new disk_cache::BackendImpl(
entry_impl.h 17 class BackendImpl;
41 EntryImpl(BackendImpl* backend, Addr address, bool read_only);
129 void OnEntryCreated(BackendImpl* backend);
259 base::WeakPtr<BackendImpl> backend_; // Back pointer to the cache.
  /external/chromium/net/disk_cache/
backend_impl.cc 220 disk_cache::BackendImpl* cache_;
228 cache_ = new disk_cache::BackendImpl(path_, thread_, net_log_);
273 explicit FinalCleanup(disk_cache::BackendImpl* backend) : backend_(backend) {}
278 disk_cache::BackendImpl* backend_;
303 return BackendImpl::CreateBackend(path, force, max_bytes, type, kNone, thread,
338 BackendImpl::BackendImpl(const FilePath& path,
363 BackendImpl::BackendImpl(const FilePath& path,
389 BackendImpl::~BackendImpl()
    [all...]
eviction.h 16 class BackendImpl;
20 // integrated with BackendImpl.
26 void Init(BackendImpl* backend);
72 BackendImpl* backend_;
stats.h 18 class BackendImpl;
55 bool Init(BackendImpl* backend, uint32* storage_addr);
85 BackendImpl* backend_;
backend_impl.h 42 class BackendImpl : public Backend {
45 BackendImpl(const FilePath& path, base::MessageLoopProxy* cache_thread,
48 BackendImpl(const FilePath& path, uint32 mask,
50 ~BackendImpl();
182 base::WeakPtr<BackendImpl> GetWeakPtr();
374 base::RepeatingTimer<BackendImpl> timer_; // Usage timer.
377 ScopedRunnableMethodFactory<BackendImpl> factory_;
378 base::WeakPtrFactory<BackendImpl> ptr_factory_;
380 DISALLOW_COPY_AND_ASSIGN(BackendImpl);
disk_cache_test_base.h 26 class BackendImpl;
124 disk_cache::BackendImpl* cache_impl_;
in_flight_backend_io.h 20 class BackendImpl;
28 BackendIO(InFlightIO* controller, BackendImpl* backend,
113 BackendImpl* backend_;
142 InFlightBackendIO(BackendImpl* backend,
199 BackendImpl* backend_;
rankings.h 20 class BackendImpl;
107 bool Init(BackendImpl* backend, bool count_lists);
202 BackendImpl* backend_;
stats.cc 72 bool LoadStats(BackendImpl* backend, Addr address, OnDiskStats* stats) {
95 bool StoreStats(BackendImpl* backend, Addr address, OnDiskStats* stats) {
105 bool CreateStats(BackendImpl* backend, Addr* address, OnDiskStats* stats) {
125 bool Stats::Init(BackendImpl* backend, uint32* storage_addr) {
disk_cache_test_base.cc 182 TrimTask(disk_cache::BackendImpl* backend, bool deleted, bool empty)
195 disk_cache::BackendImpl* backend_;
257 int rv = disk_cache::BackendImpl::CreateBackend(
268 cache_impl_ = new disk_cache::BackendImpl(path, mask_, thread, NULL);
270 cache_impl_ = new disk_cache::BackendImpl(path, thread, NULL);
disk_cache_test_util.cc 96 scoped_ptr<disk_cache::BackendImpl> cache(new disk_cache::BackendImpl(
  /external/chromium_org/base/threading/
thread_restrictions.h 56 class BackendImpl;
208 friend class disk_cache::BackendImpl; // http://crbug.com/74623

Completed in 2986 milliseconds

1 2