Searched refs:BackendCleanupTracker (Results 1 – 13 of 13) sorted by relevance
/external/cronet/net/disk_cache/ |
D | backend_cleanup_tracker.h | 28 class NET_EXPORT_PRIVATE BackendCleanupTracker 29 : public base::RefCounted<BackendCleanupTracker> { 34 static scoped_refptr<BackendCleanupTracker> TryCreate( 38 BackendCleanupTracker(const BackendCleanupTracker&) = delete; 39 BackendCleanupTracker& operator=(const BackendCleanupTracker&) = delete; 48 friend class base::RefCounted<BackendCleanupTracker>; 49 explicit BackendCleanupTracker(const base::FilePath& path); 50 ~BackendCleanupTracker();
|
D | backend_cleanup_tracker.cc | 24 using TrackerMap = std::unordered_map<base::FilePath, BackendCleanupTracker*>; 41 scoped_refptr<BackendCleanupTracker> BackendCleanupTracker::TryCreate( in TryCreate() 49 std::pair<base::FilePath, BackendCleanupTracker*>(path, nullptr)); in TryCreate() 51 auto tracker = base::WrapRefCounted(new BackendCleanupTracker(path)); in TryCreate() 61 void BackendCleanupTracker::AddPostCleanupCallback(base::OnceClosure cb) { in AddPostCleanupCallback() 69 void BackendCleanupTracker::AddPostCleanupCallbackImpl(base::OnceClosure cb) { in AddPostCleanupCallbackImpl() 74 BackendCleanupTracker::BackendCleanupTracker(const base::FilePath& path) in BackendCleanupTracker() function in disk_cache::BackendCleanupTracker 77 BackendCleanupTracker::~BackendCleanupTracker() { in ~BackendCleanupTracker()
|
D | backend_cleanup_tracker_unittest.cc | 48 scoped_refptr<BackendCleanupTracker> t1 = in TEST_F() 49 BackendCleanupTracker::TryCreate(path1_, RecordCallClosure(1)); in TEST_F() 50 scoped_refptr<BackendCleanupTracker> t2 = in TEST_F() 51 BackendCleanupTracker::TryCreate(path2_, RecordCallClosure(2)); in TEST_F() 84 scoped_refptr<BackendCleanupTracker> t1 = in TEST_F() 85 BackendCleanupTracker::TryCreate(path1_, RecordCallClosure(1)); in TEST_F() 86 scoped_refptr<BackendCleanupTracker> t2 = in TEST_F() 87 BackendCleanupTracker::TryCreate(path1_, RecordCallClosure(2)); in TEST_F() 99 scoped_refptr<BackendCleanupTracker> alias = t1; in TEST_F()
|
D | disk_cache.cc | 90 scoped_refptr<disk_cache::BackendCleanupTracker> cleanup_tracker_; 188 cleanup_tracker_ = disk_cache::BackendCleanupTracker::TryCreate( in TryCreateCleanupTrackerAndRun()
|
/external/cronet/net/disk_cache/simple/ |
D | simple_index.h | 43 class BackendCleanupTracker; variable 135 scoped_refptr<BackendCleanupTracker> cleanup_tracker, 267 scoped_refptr<BackendCleanupTracker> cleanup_tracker_;
|
D | simple_backend_impl.h | 53 class BackendCleanupTracker; variable 70 scoped_refptr<BackendCleanupTracker> cleanup_tracker, 262 scoped_refptr<BackendCleanupTracker> cleanup_tracker_;
|
D | simple_entry_impl.h | 43 class BackendCleanupTracker; variable 73 scoped_refptr<BackendCleanupTracker> cleanup_tracker, 360 scoped_refptr<BackendCleanupTracker> cleanup_tracker_;
|
D | simple_index_file_unittest.cc | 584 scoped_refptr<disk_cache::BackendCleanupTracker> cleanup_tracker = in TEST_F() 585 disk_cache::BackendCleanupTracker::TryCreate(cache_path, in TEST_F()
|
D | simple_index.cc | 178 scoped_refptr<BackendCleanupTracker> cleanup_tracker, in SimpleIndex()
|
D | simple_backend_impl.cc | 209 scoped_refptr<BackendCleanupTracker> cleanup_tracker, in SimpleBackendImpl()
|
D | simple_entry_impl.cc | 128 scoped_refptr<BackendCleanupTracker> cleanup_tracker, in SimpleEntryImpl()
|
/external/cronet/net/disk_cache/blockfile/ |
D | backend_impl.h | 37 class BackendCleanupTracker; variable 58 scoped_refptr<BackendCleanupTracker> cleanup_tracker, 398 scoped_refptr<BackendCleanupTracker> cleanup_tracker_;
|
D | backend_impl.cc | 152 scoped_refptr<BackendCleanupTracker> cleanup_tracker, in BackendImpl()
|