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

1 2 3 4

  /external/chromium/net/disk_cache/
file_block.h 5 // See net/disk_cache/disk_cache.h for the public interface of the cache.
10 namespace disk_cache { namespace
29 } // namespace disk_cache
storage_block_unittest.cc 6 #include "net/disk_cache/storage_block.h"
7 #include "net/disk_cache/storage_block-inl.h"
8 #include "net/disk_cache/disk_cache_test_base.h"
9 #include "net/disk_cache/disk_cache_test_util.h"
14 scoped_refptr<disk_cache::MappedFile> file(new disk_cache::MappedFile);
18 disk_cache::CacheEntryBlock entry1(file, disk_cache::Addr(0xa0010001));
19 memset(entry1.Data(), 0, sizeof(disk_cache::EntryStore));
34 scoped_refptr<disk_cache::MappedFile> file(new disk_cache::MappedFile)
    [all...]
cache_util.h 14 namespace disk_cache { namespace
27 } // namespace disk_cache
disk_cache_test_base.h 14 namespace disk_cache { namespace
20 } // namespace disk_cache
77 disk_cache::Backend* cache_;
78 disk_cache::BackendImpl* cache_impl_;
79 disk_cache::MemBackendImpl* mem_cache_;
errors.h 10 namespace disk_cache { namespace
28 } // namespace disk_cache
file_lock.cc 5 #include "net/disk_cache/file_lock.h"
7 namespace disk_cache { namespace
27 } // namespace disk_cache
file_lock.h 5 // See net/disk_cache/disk_cache.h for the public interface of the cache.
10 #include "net/disk_cache/disk_format.h"
12 namespace disk_cache { namespace
43 } // namespace disk_cache
disk_cache_test_base.cc 5 #include "net/disk_cache/disk_cache_test_base.h"
7 #include "net/disk_cache/backend_impl.h"
8 #include "net/disk_cache/disk_cache_test_util.h"
9 #include "net/disk_cache/mem_backend_impl.h"
40 cache_ = disk_cache::CreateInMemoryCacheBackend(size_);
44 mem_cache_ = new disk_cache::MemBackendImpl();
62 cache_ = disk_cache::BackendImpl::CreateBackend(path, force_creation_, size_,
63 net::DISK_CACHE,
64 disk_cache::kNoRandom);
69 cache_impl_ = new disk_cache::BackendImpl(path, mask_)
    [all...]
addr.cc 5 #include "net/disk_cache/addr.h"
9 namespace disk_cache { namespace
29 } // namespace disk_cache
hash.h 12 namespace disk_cache { namespace
28 } // namespace disk_cache
trace.h 18 namespace disk_cache { namespace
45 } // namespace disk_cache
disk_cache_test_util.cc 5 #include "net/disk_cache/disk_cache_test_util.h"
10 #include "net/disk_cache/backend_impl.h"
11 #include "net/disk_cache/cache_util.h"
12 #include "net/disk_cache/file.h"
65 scoped_refptr<disk_cache::File> file(new disk_cache::File(
75 disk_cache::DeleteCache(path, false);
80 scoped_ptr<disk_cache::BackendImpl> cache(new disk_cache::BackendImpl(path));
85 cache->SetFlags(disk_cache::kNoRandom)
    [all...]
disk_cache_perftest.cc 16 #include "net/disk_cache/block_files.h"
17 #include "net/disk_cache/disk_cache.h"
18 #include "net/disk_cache/disk_cache_test_util.h"
19 #include "net/disk_cache/hash.h"
42 int TimeWrite(int num_entries, disk_cache::Backend* cache,
66 disk_cache::Entry* cache_entry;
91 int TimeRead(int num_entries, disk_cache::Backend* cache,
112 disk_cache::Entry* cache_entry;
149 disk_cache::Hash(key)
    [all...]
bitmap_unittest.cc 5 #include "net/disk_cache/bitmap.h"
10 disk_cache::Bitmap map32(32, false);
13 disk_cache::Bitmap map64(64, false);
19 disk_cache::Bitmap map;
26 disk_cache::Bitmap bitmap(80, true);
59 disk_cache::Bitmap map(kSize, true);
72 disk_cache::Bitmap map(kSize1, true);
96 disk_cache::Bitmap bitmap(kMapSize * 8, false);
108 disk_cache::Bitmap bitmap2(reinterpret_cast<uint32*>(local_map),
125 disk_cache::Bitmap map(kMapSize * 8, true)
    [all...]
file_posix.cc 5 #include "net/disk_cache/file.h"
16 #include "net/disk_cache/disk_cache.h"
31 BackgroundIO(disk_cache::File* file, const void* buf, size_t buf_len,
32 size_t offset, disk_cache::FileIOCallback* callback,
67 disk_cache::FileIOCallback* callback() {
71 disk_cache::File* file() {
82 disk_cache::FileIOCallback* callback_;
84 disk_cache::File* file_;
122 void PostRead(disk_cache::File* file, void* buf, size_t buf_len
250 namespace disk_cache { namespace
    [all...]
mapped_file.h 5 // See net/disk_cache/disk_cache.h for the public interface of the cache.
12 #include "net/disk_cache/disk_format.h"
13 #include "net/disk_cache/file.h"
14 #include "net/disk_cache/file_block.h"
18 namespace disk_cache { namespace
54 } // namespace disk_cache
mem_rankings.h 5 // See net/disk_cache/disk_cache.h for the public interface.
12 namespace disk_cache { namespace
42 } // namespace disk_cache
  /external/chromium/net/tools/dump_cache/
cache_dumper.h 11 #include "net/disk_cache/backend_impl.h"
29 disk_cache::Entry** entry) = 0;
33 virtual bool WriteEntry(disk_cache::Entry* entry, int stream, int offset,
37 virtual void CloseEntry(disk_cache::Entry* entry, base::Time last_used,
44 CacheDumper(disk_cache::BackendImpl* cache) : cache_(cache) {};
46 virtual bool CreateEntry(const std::string& key, disk_cache::Entry** entry);
47 virtual bool WriteEntry(disk_cache::Entry* entry, int stream, int offset,
49 virtual void CloseEntry(disk_cache::Entry* entry, base::Time last_used,
53 disk_cache::BackendImpl* cache_;
62 virtual bool CreateEntry(const std::string& key, disk_cache::Entry** entry)
    [all...]