HomeSort by relevance Sort by last modified time
    Searched refs:disk_cache (Results 26 - 50 of 264) sorted by null

12 3 4 5 6 7 8 91011

  /external/chromium_org/net/disk_cache/
file_lock.h 5 // See net/disk_cache/disk_cache.h for the public interface of the cache.
11 #include "net/disk_cache/disk_format_base.h"
13 namespace disk_cache { namespace
43 } // namespace disk_cache
file_posix.cc 5 #include "net/disk_cache/file.h"
14 #include "net/disk_cache/disk_cache.h"
15 #include "net/disk_cache/in_flight_io.h"
21 class FileBackgroundIO : public disk_cache::BackgroundIO {
28 FileBackgroundIO(disk_cache::File* file, const void* buf, size_t buf_len,
29 size_t offset, disk_cache::FileIOCallback* callback,
30 disk_cache::InFlightIO* controller)
31 : disk_cache::BackgroundIO(controller), callback_(callback), file_(file),
35 disk_cache::FileIOCallback* callback()
169 namespace disk_cache { namespace
    [all...]
cache_creator.cc 10 #include "net/disk_cache/backend_impl.h"
11 #include "net/disk_cache/cache_util.h"
12 #include "net/disk_cache/disk_cache.h"
13 #include "net/disk_cache/mem_backend_impl.h"
14 #include "net/disk_cache/simple/simple_backend_impl.h"
17 #include "net/disk_cache/tracing_cache_backend.h"
30 scoped_ptr<disk_cache::Backend>* backend,
51 scoped_ptr<disk_cache::Backend>* backend_;
53 scoped_ptr<disk_cache::Backend> created_cache_
142 namespace disk_cache { namespace
    [all...]
cache_util.h 10 #include "net/disk_cache/disk_cache.h"
16 namespace disk_cache { namespace
39 } // namespace disk_cache
file_lock.cc 5 #include "net/disk_cache/file_lock.h"
20 namespace disk_cache { namespace
47 } // namespace disk_cache
trace.h 16 namespace disk_cache { namespace
39 } // namespace disk_cache
  /external/chromium_org/net/disk_cache/simple/
simple_net_log_parameters.h 10 // This file augments the functions in net/disk_cache/net_log_parameters.h to
12 namespace disk_cache { namespace
30 } // namespace disk_cache
simple_test_util.cc 5 #include "net/disk_cache/simple/simple_test_util.h"
8 #include "net/disk_cache/simple/simple_util.h"
10 namespace disk_cache { namespace
17 disk_cache::simple_util::GetFilenameFromKeyAndIndex(key, 0));
34 } // namespace disk_cache
simple_util_unittest.cc 7 #include "net/disk_cache/simple/simple_util.h"
10 using disk_cache::simple_util::ConvertEntryHashKeyToHexString;
11 using disk_cache::simple_util::GetEntryHashKeyAsHexString;
12 using disk_cache::simple_util::GetEntryHashKeyFromHexString;
13 using disk_cache::simple_util::GetEntryHashKey;
14 using disk_cache::simple_util::GetFileSizeFromKeyAndDataSize;
15 using disk_cache::simple_util::GetDataSizeFromKeyAndFileSize;
simple_net_log_parameters.cc 5 #include "net/disk_cache/simple/simple_net_log_parameters.h"
14 #include "net/disk_cache/simple/simple_entry_impl.h"
19 const disk_cache::SimpleEntryImpl* entry,
28 const disk_cache::SimpleEntryImpl* entry,
40 namespace disk_cache { namespace
55 } // namespace disk_cache
  /external/chromium_org/net/tools/dump_cache/
dump_files.cc 21 #include "net/disk_cache/block_files.h"
22 #include "net/disk_cache/disk_format.h"
23 #include "net/disk_cache/mapped_file.h"
24 #include "net/disk_cache/stats.h"
25 #include "net/disk_cache/storage_block-inl.h"
26 #include "net/disk_cache/storage_block.h"
50 disk_cache::IndexHeader header;
58 void DumpStats(const base::FilePath& path, disk_cache::CacheAddr addr) {
62 disk_cache::BlockFiles block_files(path);
68 disk_cache::Addr address(addr)
    [all...]
simple_cache_dumper.h 15 namespace disk_cache { namespace
18 } // namespace disk_cache
79 scoped_ptr<disk_cache::Backend> cache_;
83 disk_cache::Entry* src_entry_;
84 disk_cache::Entry* dst_entry_;
  /external/chromium/net/http/
disk_cache_based_ssl_host_info.h 14 #include "net/disk_cache/disk_cache.h"
62 disk_cache::Backend** backend_pointer() { return &backend_; }
63 disk_cache::Entry** entry_pointer() { return &entry_; }
64 disk_cache::Backend* backend() const { return backend_; }
65 disk_cache::Entry* entry() const { return entry_; }
74 disk_cache::Backend* backend_;
75 disk_cache::Entry* entry_;
112 disk_cache::Backend* backend_;
113 disk_cache::Entry* entry_
    [all...]
partial_data.h 14 namespace disk_cache { namespace
57 int ShouldValidateCache(disk_cache::Entry* entry,
62 void PrepareCacheValidation(disk_cache::Entry* entry,
76 disk_cache::Entry* entry, bool truncated);
100 int CacheRead(disk_cache::Entry* entry, IOBuffer* data, int data_len,
105 int CacheWrite(disk_cache::Entry* entry, IOBuffer* data, int data_len,
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/net/disk_cache/flash/
segment_unittest.cc 6 #include "net/disk_cache/disk_cache_test_util.h"
7 #include "net/disk_cache/flash/segment.h"
8 #include "net/disk_cache/flash/storage.h"
9 #include "net/disk_cache/flash/flash_cache_test_base.h"
10 #include "net/disk_cache/flash/format.h"
29 const int32 kLargeEntrySize = disk_cache::kFlashSegmentSize / 4;
34 const int32 kSegmentFreeSpace = disk_cache::kFlashSegmentSize -
35 disk_cache::kFlashSummarySize;
40 disk_cache::Storage storage(path_, kStorageSize);
43 scoped_ptr<disk_cache::Segment> segment
    [all...]
log_store_entry_unittest.cc 7 #include "net/disk_cache/disk_cache_test_util.h"
8 #include "net/disk_cache/flash/flash_cache_test_base.h"
9 #include "net/disk_cache/flash/format.h"
10 #include "net/disk_cache/flash/log_store.h"
11 #include "net/disk_cache/flash/log_store_entry.h"
14 using disk_cache::LogStoreEntry;
18 disk_cache::LogStore log_store(path_, kStorageSize);
28 for (int i = 0; i < disk_cache::kFlashLogStoreEntryNumStreams; ++i) {
39 disk_cache::LogStore log_store(path_, kStorageSize);
45 int sizes[disk_cache::kFlashLogStoreEntryNumStreams] = {333, 444, 555, 666}
    [all...]
format.h 8 namespace disk_cache { namespace
30 } // namespace disk_cache
  /external/chromium_org/net/http/
partial_data.h 13 namespace disk_cache { namespace
56 int ShouldValidateCache(disk_cache::Entry* entry,
61 void PrepareCacheValidation(disk_cache::Entry* entry,
75 disk_cache::Entry* entry, bool truncated);
99 int CacheRead(disk_cache::Entry* entry, IOBuffer* data, int data_len,
104 int CacheWrite(disk_cache::Entry* entry, IOBuffer* data, int data_len,
mock_http_cache.h 14 #include "net/disk_cache/disk_cache.h"
21 class MockDiskEntry : public disk_cache::Entry,
96 class MockDiskCache : public disk_cache::Backend {
103 virtual int OpenEntry(const std::string& key, disk_cache::Entry** entry,
105 virtual int CreateEntry(const std::string& key, disk_cache::Entry** entry,
117 virtual int OpenNextEntry(void** iter, disk_cache::Entry** next_entry,
161 scoped_ptr<disk_cache::Backend>* backend,
175 MockDiskCache* disk_cache();
178 static bool ReadResponseInfo(disk_cache::Entry* disk_entry
    [all...]
  /external/chromium/net/tools/dump_cache/
dump_files.cc 16 #include "net/disk_cache/block_files.h"
17 #include "net/disk_cache/disk_format.h"
18 #include "net/disk_cache/mapped_file.h"
19 #include "net/disk_cache/storage_block.h"
45 disk_cache::IndexHeader header;
54 disk_cache::IndexHeader header;
81 disk_cache::BlockFileHeader header;
122 bool GetEntry(disk_cache::EntryStore* entry);
125 bool LoadEntry(disk_cache::CacheAddr addr, disk_cache::EntryStore* entry)
    [all...]
  /external/chromium/net/disk_cache/
file_posix.cc 5 #include "net/disk_cache/file.h"
12 #include "net/disk_cache/disk_cache.h"
13 #include "net/disk_cache/in_flight_io.h"
19 class FileBackgroundIO : public disk_cache::BackgroundIO {
26 FileBackgroundIO(disk_cache::File* file, const void* buf, size_t buf_len,
27 size_t offset, disk_cache::FileIOCallback* callback,
28 disk_cache::InFlightIO* controller)
29 : disk_cache::BackgroundIO(controller), callback_(callback), file_(file),
33 disk_cache::FileIOCallback* callback()
167 namespace disk_cache { namespace
    [all...]
hash.h 13 namespace disk_cache { namespace
29 } // namespace disk_cache
trace.h 16 namespace disk_cache { namespace
38 } // namespace disk_cache
  /external/chromium_org/net/disk_cache/v3/
backend_worker.h 5 // See net/disk_cache/disk_cache.h for the public interface of the cache.
13 #include "net/disk_cache/block_files.h"
14 #include "net/disk_cache/disk_cache.h"
15 #include "net/disk_cache/eviction.h"
16 #include "net/disk_cache/in_flight_backend_io.h"
17 #include "net/disk_cache/rankings.h"
18 #include "net/disk_cache/stats.h"
19 #include "net/disk_cache/stress_support.h
22 namespace disk_cache { namespace
    [all...]

Completed in 247 milliseconds

12 3 4 5 6 7 8 91011