HomeSort by relevance Sort by last modified time
    Searched refs:disk_cache (Results 51 - 75 of 185) sorted by null

1 23 4 5 6 7 8

  /external/chromium_org/net/disk_cache/
backend_unittest.cc 19 #include "net/disk_cache/blockfile/backend_impl.h"
20 #include "net/disk_cache/blockfile/entry_impl.h"
21 #include "net/disk_cache/blockfile/experiments.h"
22 #include "net/disk_cache/blockfile/histogram_macros.h"
23 #include "net/disk_cache/blockfile/mapped_file.h"
24 #include "net/disk_cache/cache_util.h"
25 #include "net/disk_cache/disk_cache_test_base.h"
26 #include "net/disk_cache/disk_cache_test_util.h"
27 #include "net/disk_cache/memory/mem_backend_impl.h"
28 #include "net/disk_cache/simple/simple_backend_impl.h
    [all...]
cache_util.cc 5 #include "net/disk_cache/cache_util.h"
35 disk_cache::DeleteCache(to_delete, true);
53 using disk_cache::kDefaultCacheSize;
79 namespace disk_cache { namespace
131 if (!disk_cache::MoveCache(full_path, to_delete)) {
159 } // namespace disk_cache
cache_util_win.cc 5 #include "net/disk_cache/cache_util.h"
14 namespace disk_cache { namespace
46 } // namespace disk_cache
disk_cache_test_util.cc 5 #include "net/disk_cache/disk_cache_test_util.h"
13 #include "net/disk_cache/blockfile/backend_impl.h"
14 #include "net/disk_cache/blockfile/file.h"
15 #include "net/disk_cache/cache_util.h"
58 disk_cache::DeleteCache(path, false);
64 scoped_ptr<disk_cache::BackendImpl> cache(new disk_cache::BackendImpl(
70 cache->SetFlags(disk_cache::kNoRandom);
net_log_parameters.h 14 namespace disk_cache { namespace
60 } // namespace disk_cache
entry_unittest.cc 18 #include "net/disk_cache/blockfile/backend_impl.h"
19 #include "net/disk_cache/blockfile/entry_impl.h"
20 #include "net/disk_cache/disk_cache_test_base.h"
21 #include "net/disk_cache/disk_cache_test_util.h"
22 #include "net/disk_cache/memory/mem_entry_impl.h"
23 #include "net/disk_cache/simple/simple_entry_format.h"
24 #include "net/disk_cache/simple/simple_entry_impl.h"
25 #include "net/disk_cache/simple/simple_synchronous_entry.h"
26 #include "net/disk_cache/simple/simple_test_util.h"
27 #include "net/disk_cache/simple/simple_util.h
    [all...]
cache_util_unittest.cc 7 #include "net/disk_cache/cache_util.h"
11 namespace disk_cache { namespace
55 EXPECT_TRUE(disk_cache::MoveCache(cache_dir_, dest_dir_));
71 disk_cache::DeleteCache(cache_dir_, false);
80 disk_cache::DeleteCache(cache_dir_, true);
89 EXPECT_TRUE(disk_cache::DeleteCacheFile(file1_));
96 } // namespace disk_cache
  /external/chromium_org/net/http/
http_cache.h 9 // The HttpCache takes a disk_cache::Backend as a parameter, and uses that for
42 namespace disk_cache { namespace
45 } // namespace disk_cache
95 scoped_ptr<disk_cache::Backend>* backend,
117 scoped_ptr<disk_cache::Backend>* backend,
158 int GetBackend(disk_cache::Backend** backend,
162 disk_cache::Backend* GetCurrentBackend() const;
245 explicit ActiveEntry(disk_cache::Entry* entry);
248 disk_cache::Entry* disk_entry;
265 int CreateBackend(disk_cache::Backend** backend
    [all...]
disk_cache_based_quic_server_info.h 14 #include "net/disk_cache/disk_cache.h"
95 disk_cache::Backend* backend_;
96 disk_cache::Entry* entry_;
  /external/chromium_org/content/browser/appcache/
appcache_disk_cache.h 15 #include "net/disk_cache/disk_cache.h"
60 // underlying disk_cache::Backend to be fully constructed. Early
61 // calls are queued up and serviced once the disk_cache::Backend is
90 disk_cache::Backend* disk_cache() { return disk_cache_.get(); } function in class:content::AppCacheDiskCache
109 scoped_ptr<disk_cache::Backend> disk_cache_;
  /external/chromium_org/net/disk_cache/blockfile/
backend_worker_v3.cc 5 #include "net/disk_cache/blockfile/backend_worker_v3.h"
17 #include "net/disk_cache/blockfile/errors.h"
18 #include "net/disk_cache/blockfile/experiments.h"
19 #include "net/disk_cache/blockfile/file.h"
60 size_t table_size = sizeof(disk_cache::CacheAddr) * table_len;
61 return sizeof(disk_cache::IndexHeader) + table_size;
68 bool InitExperiment(disk_cache::IndexHeader* header, bool cache_created) {
69 if (header->experiment == disk_cache::EXPERIMENT_OLD_FILE1 ||
70 header->experiment == disk_cache::EXPERIMENT_OLD_FILE2) {
78 header->experiment = disk_cache::EXPERIMENT_SIMPLE_CONTROL
94 namespace disk_cache { namespace
    [all...]
file_win.cc 5 #include "net/disk_cache/blockfile/file.h"
11 #include "net/disk_cache/disk_cache.h"
17 MyOverlapped(disk_cache::File* file, size_t offset,
18 disk_cache::FileIOCallback* callback);
25 scoped_refptr<disk_cache::File> file_;
26 disk_cache::FileIOCallback* callback_;
59 MyOverlapped::MyOverlapped(disk_cache::File* file, size_t offset,
60 disk_cache::FileIOCallback* callback) {
70 namespace disk_cache { namespace
    [all...]
addr.cc 5 #include "net/disk_cache/blockfile/addr.h"
9 namespace disk_cache { namespace
92 } // namespace disk_cache
disk_format_base.h 26 namespace disk_cache { namespace
130 } // namespace disk_cache
eviction_v3.h 10 #include "net/disk_cache/blockfile/disk_format_v3.h"
11 #include "net/disk_cache/blockfile/index_table_v3.h"
13 namespace disk_cache { namespace
76 } // namespace disk_cache
in_flight_io.h 18 namespace disk_cache { namespace
138 } // namespace disk_cache
mapped_file.h 5 // See net/disk_cache/disk_cache.h for the public interface of the cache.
11 #include "net/disk_cache/blockfile/file.h"
12 #include "net/disk_cache/blockfile/file_block.h"
18 namespace disk_cache { namespace
80 } // namespace disk_cache
mapped_file_posix.cc 5 #include "net/disk_cache/blockfile/mapped_file.h"
12 #include "net/disk_cache/disk_cache.h"
14 namespace disk_cache { namespace
54 } // namespace disk_cache
mapped_file_win.cc 5 #include "net/disk_cache/blockfile/mapped_file.h"
10 #include "net/disk_cache/disk_cache.h"
12 namespace disk_cache { namespace
55 } // namespace disk_cache
  /external/chromium_org/net/disk_cache/simple/
simple_entry_format.h 17 namespace disk_cache { namespace
71 } // namespace disk_cache
simple_index_file_win.cc 5 #include "net/disk_cache/simple/simple_index_file.h"
12 namespace disk_cache { namespace
33 } // namespace disk_cache
simple_test_util.h 17 namespace disk_cache { namespace
46 } // namespace disk_cache
  /external/chromium_org/net/tools/dump_cache/
cache_dumper.cc 11 #include "net/disk_cache/blockfile/entry_impl.h"
17 CacheDumper::CacheDumper(disk_cache::Backend* cache)
22 disk_cache::Entry** entry,
27 int CacheDumper::WriteEntry(disk_cache::Entry* entry, int index, int offset,
33 void CacheDumper::CloseEntry(disk_cache::Entry* entry, base::Time last_used,
36 static_cast<disk_cache::EntryImpl*>(entry)->SetTimes(last_used,
78 disk_cache::Entry** entry,
156 int DiskDumper::WriteEntry(disk_cache::Entry* entry, int index, int offset,
216 void DiskDumper::CloseEntry(disk_cache::Entry* entry, base::Time last_used,
  /external/chromium_org/base/threading/
thread_restrictions.h 56 namespace disk_cache { namespace
220 friend class disk_cache::BackendImpl; // http://crbug.com/74623
221 friend class disk_cache::InFlightIO; // http://crbug.com/74623
  /external/chromium_org/content/browser/service_worker/
service_worker_cache.h 14 #include "net/disk_cache/disk_cache.h"
88 void set_backend(scoped_ptr<disk_cache::Backend> backend) {
98 typedef std::vector<disk_cache::Entry*> Entries;
132 scoped_ptr<disk_cache::Backend> backend_;

Completed in 850 milliseconds

1 23 4 5 6 7 8