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

1 23

  /external/chromium/net/disk_cache/
backend_impl.h 5 // See net/disk_cache/disk_cache.h for the public interface of the cache.
14 #include "net/disk_cache/block_files.h"
15 #include "net/disk_cache/disk_cache.h"
16 #include "net/disk_cache/eviction.h"
17 #include "net/disk_cache/in_flight_backend_io.h"
18 #include "net/disk_cache/rankings.h"
19 #include "net/disk_cache/stats.h"
20 #include "net/disk_cache/trace.h
26 namespace disk_cache { namespace
    [all...]
bitmap.cc 5 #include "net/disk_cache/bitmap.h"
41 namespace disk_cache { namespace
311 } // namespace disk_cache
eviction.cc 29 #include "net/disk_cache/eviction.h"
36 #include "net/disk_cache/backend_impl.h"
37 #include "net/disk_cache/entry_impl.h"
38 #include "net/disk_cache/experiments.h"
39 #include "net/disk_cache/histogram_macros.h"
40 #include "net/disk_cache/trace.h"
61 namespace disk_cache { namespace
573 } // namespace disk_cache
in_flight_backend_io.h 16 #include "net/disk_cache/in_flight_io.h"
18 namespace disk_cache { namespace
205 } // namespace disk_cache
mem_entry_impl.cc 5 #include "net/disk_cache/mem_entry_impl.h"
11 #include "net/disk_cache/mem_backend_impl.h"
12 #include "net/disk_cache/net_log_parameters.h"
46 namespace disk_cache { namespace
624 } // namespace disk_cache
rankings.h 5 // See net/disk_cache/disk_cache.h for the public interface.
14 #include "net/disk_cache/addr.h"
15 #include "net/disk_cache/mapped_file.h"
16 #include "net/disk_cache/storage_block.h"
18 namespace disk_cache { namespace
209 } // namespace disk_cache
stats.cc 5 #include "net/disk_cache/stats.h"
11 #include "net/disk_cache/backend_impl.h"
20 int data_sizes[disk_cache::Stats::kDataSizesLength];
21 int64 counters[disk_cache::Stats::MAX_COUNTER];
65 COMPILE_ASSERT(arraysize(kCounterNames) == disk_cache::Stats::MAX_COUNTER,
70 namespace disk_cache { namespace
149 if (!size_histogram_ && backend->cache_type() == net::DISK_CACHE &&
329 } // namespace 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/net/http/
http_cache.h 9 // The HttpCache takes a disk_cache::Backend as a parameter, and uses that for
38 namespace disk_cache { namespace
90 disk_cache::Backend** backend,
109 disk_cache::Backend** backend,
156 int GetBackend(disk_cache::Backend** backend, CompletionCallback* callback);
159 disk_cache::Backend* GetCurrentBackend();
218 explicit ActiveEntry(disk_cache::Entry* entry);
221 disk_cache::Entry* disk_entry;
238 int CreateBackend(disk_cache::Backend** backend,
269 ActiveEntry* ActivateEntry(disk_cache::Entry* disk_entry)
    [all...]
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:__anon4497::MockHttpCache
565 disk_cache::Backend* backend
    [all...]
  /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...]

Completed in 192 milliseconds

1 23