/external/cronet/net/disk_cache/blockfile/ |
D | backend_impl.cc | 112 void FinalCleanupCallback(disk_cache::BackendImpl* backend, in FinalCleanupCallback() 150 BackendImpl::BackendImpl( in BackendImpl() function in disk_cache::BackendImpl 166 BackendImpl::BackendImpl( in BackendImpl() function in disk_cache::BackendImpl 182 BackendImpl::~BackendImpl() { in ~BackendImpl() 210 void BackendImpl::Init(CompletionOnceCallback callback) { in Init() 214 int BackendImpl::SyncInit() { in SyncInit() 319 &BackendImpl::OnStatsTimer); in SyncInit() 325 void BackendImpl::CleanupCache() { in CleanupCache() 355 int BackendImpl::SyncOpenEntry(const std::string& key, in SyncOpenEntry() 362 int BackendImpl::SyncCreateEntry(const std::string& key, in SyncCreateEntry() [all …]
|
D | backend_impl.h | 54 class NET_EXPORT_PRIVATE BackendImpl : public Backend { 57 BackendImpl(const base::FilePath& path, 64 BackendImpl(const base::FilePath& path, 70 BackendImpl(const BackendImpl&) = delete; 71 BackendImpl& operator=(const BackendImpl&) = delete; 73 ~BackendImpl() override; 202 base::WeakPtr<BackendImpl> GetWeakPtr(); 441 base::WeakPtrFactory<BackendImpl> ptr_factory_{this};
|
D | in_flight_backend_io.h | 28 class BackendImpl; variable 37 BackendImpl* backend, 41 BackendImpl* backend, 45 BackendImpl* backend, 112 BackendIO(InFlightBackendIO* controller, BackendImpl* backend); 158 raw_ptr<BackendImpl, DanglingUntriaged> backend_; 195 BackendImpl* backend, 273 raw_ptr<BackendImpl> backend_;
|
D | eviction.h | 14 class BackendImpl; variable 29 void Init(BackendImpl* backend); 76 raw_ptr<BackendImpl> backend_ = nullptr;
|
D | entry_impl.h | 26 class BackendImpl; variable 50 EntryImpl(BackendImpl* backend, Addr address, bool read_only); 152 void OnEntryCreated(BackendImpl* backend); 301 base::WeakPtr<BackendImpl> backend_; // Back pointer to the cache.
|
D | rankings.h | 21 class BackendImpl; variable 120 bool Init(BackendImpl* backend, bool count_lists); 218 raw_ptr<BackendImpl> backend_;
|
D | in_flight_backend_io.cc | 39 BackendImpl* backend, in BackendIO() 46 BackendImpl* backend, in BackendIO() 53 BackendImpl* backend, in BackendIO() 59 BackendIO::BackendIO(InFlightBackendIO* controller, BackendImpl* backend) in BackendIO() 430 BackendImpl* backend, in InFlightBackendIO()
|
D | entry_impl.cc | 107 explicit UserBuffer(BackendImpl* backend) : backend_(backend->GetWeakPtr()) { in UserBuffer() 149 base::WeakPtr<BackendImpl> backend_; 316 EntryImpl::EntryImpl(BackendImpl* backend, Addr address, bool read_only) in EntryImpl() 707 void EntryImpl::OnEntryCreated(BackendImpl* backend) { in OnEntryCreated()
|
D | sparse_control.cc | 69 ChildrenDeleter(disk_cache::BackendImpl* backend, const std::string& name) in ChildrenDeleter() 88 base::WeakPtr<disk_cache::BackendImpl> backend_;
|
D | eviction.cc | 85 void Eviction::Init(BackendImpl* backend) { in Init()
|
D | rankings.cc | 226 bool Rankings::Init(BackendImpl* backend, bool count_lists) { in Init()
|
/external/cronet/net/tools/crash_cache/ |
D | crash_cache.cc | 135 reinterpret_cast<disk_cache::BackendImpl*>(cache)->FlushQueueForTest( in FlushQueue() 145 disk_cache::BackendImpl* backend = new disk_cache::BackendImpl( in CreateCache() 281 disk_cache::BackendImpl* cache = new disk_cache::BackendImpl( in LoadOperations()
|
/external/cronet/net/disk_cache/ |
D | disk_cache_test_base.cc | 305 RunTaskForTest(base::BindOnce(&disk_cache::BackendImpl::TrimForTest, in TrimForTest() 314 base::BindOnce(&disk_cache::BackendImpl::TrimDeletedListForTest, in TrimDeletedListForTest() 418 std::unique_ptr<disk_cache::BackendImpl> cache; in CreateBackend() 420 cache = std::make_unique<disk_cache::BackendImpl>(cache_path_, mask_, in CreateBackend() 424 cache = std::make_unique<disk_cache::BackendImpl>( in CreateBackend()
|
D | disk_cache_test_base.h | 31 class BackendImpl; variable 203 raw_ptr<disk_cache::BackendImpl> cache_impl_ = nullptr;
|
D | disk_cache.cc | 157 auto cache = std::make_unique<disk_cache::BackendImpl>( in Run() 160 disk_cache::BackendImpl* new_cache = cache.get(); in Run() 416 BackendImpl::FlushForTesting(); in FlushCacheThreadForTesting() 427 BackendImpl::FlushAsynchronouslyForTesting(repeating_callback); in FlushCacheThreadAsynchronouslyForTesting()
|
D | disk_cache_fuzzer.cc | 205 raw_ptr<disk_cache::BackendImpl> block_impl_ = nullptr; 960 RunTaskForTest(base::BindOnce(&disk_cache::BackendImpl::TrimForTest, in RunCommands() 973 base::BindOnce(&disk_cache::BackendImpl::TrimDeletedListForTest, in RunCommands() 1190 std::unique_ptr<disk_cache::BackendImpl> cache; in CreateBackend() 1193 cache = std::make_unique<disk_cache::BackendImpl>( in CreateBackend() 1199 cache = std::make_unique<disk_cache::BackendImpl>( in CreateBackend()
|
D | backend_unittest.cc | 101 std::unique_ptr<disk_cache::BackendImpl> CreateExistingEntryCache( in CreateExistingEntryCache() 105 std::unique_ptr<disk_cache::BackendImpl> cache( in CreateExistingEntryCache() 106 std::make_unique<disk_cache::BackendImpl>(cache_path, in CreateExistingEntryCache() 843 std::unique_ptr<disk_cache::BackendImpl> cache( in TEST_F() 844 std::make_unique<disk_cache::BackendImpl>(cache_path_, nullptr, nullptr, in TEST_F() 2529 std::unique_ptr<disk_cache::BackendImpl> cache( in TEST_F() 2530 std::make_unique<disk_cache::BackendImpl>(cache_path_, nullptr, nullptr, in TEST_F() 2542 std::unique_ptr<disk_cache::BackendImpl> cache = in TEST_F() 2571 std::unique_ptr<disk_cache::BackendImpl> cache = in TEST_F() 2579 cache = std::make_unique<disk_cache::BackendImpl>( in TEST_F() [all …]
|
D | disk_cache_test_util.cc | 65 auto cache = std::make_unique<disk_cache::BackendImpl>( in CheckCacheIntegrity()
|
/external/libchrome/base/threading/ |
D | thread_restrictions.h | 65 class BackendImpl; variable 493 friend class disk_cache::BackendImpl; // http://crbug.com/74623
|
/external/cronet/net/tools/stress_cache/ |
D | stress_cache.cc | 157 disk_cache::BackendImpl* cache = nullptr; 317 g_data->cache = new disk_cache::BackendImpl( in StressTheCache()
|
/external/cronet/base/threading/ |
D | thread_restrictions.h | 271 class BackendImpl; variable 873 friend class disk_cache::BackendImpl; // http://crbug.com/74623
|