HomeSort by relevance Sort by last modified time
    Searched defs:disk_cache (Results 176 - 198 of 198) sorted by null

1 2 3 4 5 6 78

  /external/chromium/net/disk_cache/
block_files.cc 5 #include "net/disk_cache/block_files.h"
13 #include "net/disk_cache/cache_util.h"
14 #include "net/disk_cache/file_lock.h"
15 #include "net/disk_cache/trace.h"
34 void FixAllocationCounters(disk_cache::BlockFileHeader* header);
39 bool CreateMapBlock(int target, int size, disk_cache::BlockFileHeader* header,
41 if (target <= 0 || target > disk_cache::kMaxNumBlocks ||
42 size <= 0 || size > disk_cache::kMaxNumBlocks) {
60 disk_cache::FileLock lock(header);
88 void DeleteMapBlock(int index, int size, disk_cache::BlockFileHeader* header)
187 namespace disk_cache { namespace
    [all...]
rankings.cc 5 #include "net/disk_cache/rankings.h"
8 #include "net/disk_cache/backend_impl.h"
9 #include "net/disk_cache/entry_impl.h"
10 #include "net/disk_cache/errors.h"
11 #include "net/disk_cache/histogram_macros.h"
17 disk_cache::RankCrashes g_rankings_crash = disk_cache::NO_CRASH;
37 Transaction(volatile disk_cache::LruData* data, disk_cache::Addr addr,
41 volatile disk_cache::LruData* data_
191 namespace disk_cache { namespace
    [all...]
sparse_control.cc 5 #include "net/disk_cache/sparse_control.h"
15 #include "net/disk_cache/backend_impl.h"
16 #include "net/disk_cache/entry_impl.h"
17 #include "net/disk_cache/file.h"
18 #include "net/disk_cache/net_log_parameters.h"
53 public disk_cache::FileIOCallback {
55 ChildrenDeleter(disk_cache::BackendImpl* backend, const std::string& name)
63 void ReadData(disk_cache::Addr address, int len);
71 base::WeakPtr<disk_cache::BackendImpl> backend_;
73 disk_cache::Bitmap children_map_
184 namespace disk_cache { namespace
    [all...]
disk_format.h 61 namespace disk_cache { namespace
259 } // namespace disk_cache
entry_impl.cc 5 #include "net/disk_cache/entry_impl.h"
12 #include "net/disk_cache/backend_impl.h"
13 #include "net/disk_cache/bitmap.h"
14 #include "net/disk_cache/cache_util.h"
15 #include "net/disk_cache/hash.h"
16 #include "net/disk_cache/histogram_macros.h"
17 #include "net/disk_cache/net_log_parameters.h"
18 #include "net/disk_cache/sparse_control.h"
31 class SyncCallback: public disk_cache::FileIOCallback {
35 SyncCallback(disk_cache::EntryImpl* entry, net::IOBuffer* buffer
84 namespace disk_cache { namespace
    [all...]
backend_impl.cc 5 #include "net/disk_cache/backend_impl.h"
22 #include "net/disk_cache/cache_util.h"
23 #include "net/disk_cache/entry_impl.h"
24 #include "net/disk_cache/errors.h"
25 #include "net/disk_cache/experiments.h"
26 #include "net/disk_cache/file.h"
27 #include "net/disk_cache/hash.h"
28 #include "net/disk_cache/mem_backend_impl.h"
32 #include "net/disk_cache/histogram_macros.h"
69 size_t table_size = sizeof(disk_cache::CacheAddr) * table_len
290 namespace disk_cache { namespace
    [all...]
  /external/chromium_org/net/disk_cache/
block_files.cc 5 #include "net/disk_cache/block_files.h"
14 #include "net/disk_cache/cache_util.h"
15 #include "net/disk_cache/file_lock.h"
16 #include "net/disk_cache/trace.h"
37 namespace disk_cache { namespace
75 disk_cache::FileLock lock(header_);
127 disk_cache::FileLock lock(header_);
200 for (int i = 0; i < disk_cache::kMaxNumBlocks; i++) {
695 } // namespace disk_cache
sparse_control.cc 5 #include "net/disk_cache/sparse_control.h"
16 #include "net/disk_cache/backend_impl.h"
17 #include "net/disk_cache/entry_impl.h"
18 #include "net/disk_cache/file.h"
19 #include "net/disk_cache/net_log_parameters.h"
54 public disk_cache::FileIOCallback {
56 ChildrenDeleter(disk_cache::BackendImpl* backend, const std::string& name)
64 void ReadData(disk_cache::Addr address, int len);
72 base::WeakPtr<disk_cache::BackendImpl> backend_;
74 disk_cache::Bitmap children_map_
185 namespace disk_cache { namespace
    [all...]
rankings.cc 5 #include "net/disk_cache/rankings.h"
8 #include "net/disk_cache/backend_impl.h"
9 #include "net/disk_cache/disk_format.h"
10 #include "net/disk_cache/entry_impl.h"
11 #include "net/disk_cache/errors.h"
12 #include "net/disk_cache/histogram_macros.h"
13 #include "net/disk_cache/stress_support.h"
18 namespace disk_cache { namespace
41 Transaction(volatile disk_cache::LruData* data, disk_cache::Addr addr
191 namespace disk_cache { namespace
    [all...]
entry_impl.cc 5 #include "net/disk_cache/entry_impl.h"
13 #include "net/disk_cache/backend_impl.h"
14 #include "net/disk_cache/bitmap.h"
15 #include "net/disk_cache/cache_util.h"
16 #include "net/disk_cache/disk_format.h"
17 #include "net/disk_cache/histogram_macros.h"
18 #include "net/disk_cache/net_log_parameters.h"
19 #include "net/disk_cache/sparse_control.h"
32 class SyncCallback: public disk_cache::FileIOCallback {
36 SyncCallback(disk_cache::EntryImpl* entry, net::IOBuffer* buffer
85 namespace disk_cache { namespace
    [all...]
backend_impl.cc 5 #include "net/disk_cache/backend_impl.h"
24 #include "net/disk_cache/cache_util.h"
25 #include "net/disk_cache/disk_format.h"
26 #include "net/disk_cache/entry_impl.h"
27 #include "net/disk_cache/errors.h"
28 #include "net/disk_cache/experiments.h"
29 #include "net/disk_cache/file.h"
33 #include "net/disk_cache/histogram_macros.h"
72 size_t table_size = sizeof(disk_cache::CacheAddr) * table_len;
73 return sizeof(disk_cache::IndexHeader) + table_size
109 namespace disk_cache { namespace
    [all...]
  /external/chromium_org/net/disk_cache/simple/
simple_backend_impl.cc 5 #include "net/disk_cache/simple/simple_backend_impl.h"
28 #include "net/disk_cache/backend_impl.h"
29 #include "net/disk_cache/simple/simple_entry_format.h"
30 #include "net/disk_cache/simple/simple_entry_impl.h"
31 #include "net/disk_cache/simple/simple_index.h"
32 #include "net/disk_cache/simple/simple_index_file.h"
33 #include "net/disk_cache/simple/simple_synchronous_entry.h"
34 #include "net/disk_cache/simple/simple_util.h"
120 void DeleteBackendImpl(disk_cache::Backend** backend,
159 disk_cache::SimpleFileHeader file_contents
210 namespace disk_cache { namespace
    [all...]
simple_entry_impl.cc 5 #include "net/disk_cache/simple/simple_entry_impl.h"
22 #include "net/disk_cache/net_log_parameters.h"
23 #include "net/disk_cache/simple/simple_backend_impl.h"
24 #include "net/disk_cache/simple/simple_index.h"
25 #include "net/disk_cache/simple/simple_net_log_parameters.h"
26 #include "net/disk_cache/simple/simple_synchronous_entry.h"
27 #include "net/disk_cache/simple/simple_util.h"
130 namespace disk_cache { namespace
    [all...]
simple_synchronous_entry.cc 5 #include "net/disk_cache/simple/simple_synchronous_entry.h"
22 #include "net/disk_cache/simple/simple_util.h"
133 namespace disk_cache { namespace
635 } // namespace disk_cache
  /external/chromium_org/net/disk_cache/v3/
sparse_control_v3.cc 5 #include "net/disk_cache/sparse_control.h"
16 #include "net/disk_cache/backend_impl.h"
17 #include "net/disk_cache/entry_impl.h"
18 #include "net/disk_cache/file.h"
19 #include "net/disk_cache/net_log_parameters.h"
54 public disk_cache::FileIOCallback {
56 ChildrenDeleter(disk_cache::BackendImpl* backend, const std::string& name)
64 void ReadData(disk_cache::Addr address, int len);
72 base::WeakPtr<disk_cache::BackendImpl> backend_;
74 disk_cache::Bitmap children_map_
187 namespace disk_cache { namespace
    [all...]
disk_format_v3.h 8 // Any data blob bigger than kMaxBlockSize (disk_cache/addr.h) will be stored in
26 // disk_cache/disk_format_base.h
45 #include "net/disk_cache/disk_format_base.h"
47 namespace disk_cache { namespace
188 } // namespace disk_cache
backend_impl_v3.cc 5 #include "net/disk_cache/backend_impl.h"
24 #include "net/disk_cache/cache_util.h"
25 #include "net/disk_cache/entry_impl.h"
26 #include "net/disk_cache/errors.h"
27 #include "net/disk_cache/experiments.h"
28 #include "net/disk_cache/file.h"
32 #include "net/disk_cache/histogram_macros.h"
71 size_t table_size = sizeof(disk_cache::CacheAddr) * table_len;
72 return sizeof(disk_cache::IndexHeader) + table_size;
79 namespace disk_cache { namespace
    [all...]
entry_impl_v3.cc 5 #include "net/disk_cache/entry_impl.h"
13 #include "net/disk_cache/backend_impl.h"
14 #include "net/disk_cache/bitmap.h"
15 #include "net/disk_cache/cache_util.h"
16 #include "net/disk_cache/histogram_macros.h"
17 #include "net/disk_cache/net_log_parameters.h"
18 #include "net/disk_cache/sparse_control.h"
30 namespace disk_cache { namespace
    [all...]
  /external/chromium_org/chrome/browser/browsing_data/
browsing_data_remover.h 32 namespace disk_cache { namespace
405 disk_cache::Backend* cache_;
  /external/chromium/chrome/browser/ui/webui/
net_internals_ui.cc 52 #include "net/disk_cache/disk_cache.h"
88 disk_cache::Backend* GetDiskCacheBackend(net::URLRequestContext* context) {
1170 disk_cache::Backend* disk_cache = GetDiskCacheBackend( local
    [all...]
  /external/chromium/net/http/
http_cache_unittest.cc 19 #include "net/disk_cache/disk_cache.h"
71 class MockDiskEntry : public disk_cache::Entry,
369 class MockDiskCache : public disk_cache::Backend {
384 virtual int OpenEntry(const std::string& key, disk_cache::Entry** entry,
415 virtual int CreateEntry(const std::string& key, disk_cache::Entry** entry,
479 virtual int OpenNextEntry(void** iter, disk_cache::Entry** next_entry,
541 disk_cache::Backend** backend,
563 MockDiskCache* disk_cache() { function in class:__anon5512::MockHttpCache
565 disk_cache::Backend* backend
    [all...]
  /external/chromium_org/chrome/browser/ui/webui/net_internals/
net_internals_ui.cc 66 #include "net/disk_cache/disk_cache.h"
205 disk_cache::Backend* GetDiskCacheBackend(net::URLRequestContext* context) {
1342 disk_cache::Backend* disk_cache = GetDiskCacheBackend(GetMainContext()); local
    [all...]
  /external/chromium_org/webkit/browser/appcache/
appcache_storage_impl.cc 475 // do actually exist in the disk_cache (and if not then what?)
1768 AppCacheDiskCache* AppCacheStorageImpl::disk_cache() { function in class:appcache::AppCacheStorageImpl
    [all...]

Completed in 1240 milliseconds

1 2 3 4 5 6 78