HomeSort by relevance Sort by last modified time
    Searched defs:disk_cache (Results 126 - 150 of 204) sorted by null

1 2 3 4 56 7 8 9

  /external/chromium/net/disk_cache/
in_flight_backend_io.cc 5 #include "net/disk_cache/in_flight_backend_io.h"
10 #include "net/disk_cache/backend_impl.h"
11 #include "net/disk_cache/entry_impl.h"
12 #include "net/disk_cache/histogram_macros.h"
14 namespace disk_cache { namespace
mem_backend_impl.cc 5 #include "net/disk_cache/mem_backend_impl.h"
10 #include "net/disk_cache/cache_util.h"
11 #include "net/disk_cache/mem_entry_impl.h"
29 namespace disk_cache { namespace
323 } // namespace disk_cache
mem_entry_impl.h 12 #include "net/disk_cache/disk_cache.h"
15 namespace disk_cache { namespace
188 } // namespace disk_cache
sparse_control.h 15 #include "net/disk_cache/bitmap.h"
16 #include "net/disk_cache/disk_format.h"
23 namespace disk_cache { namespace
72 // again. See disk_cache::Entry::ReadyToUse() for more info.
175 } // namespace disk_cache
stats.h 14 #include "net/disk_cache/stats_histogram.h"
16 namespace disk_cache { namespace
94 } // namespace 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...]
  /external/chromium/net/url_request/
view_cache_helper.h 14 namespace disk_cache { namespace
17 } // namespace disk_cache
97 disk_cache::Backend* disk_cache_;
98 disk_cache::Entry* entry_;
  /external/chromium_org/base/threading/
thread_restrictions.h 57 namespace disk_cache { namespace
212 friend class disk_cache::BackendImpl; // http://crbug.com/74623
213 friend class disk_cache::InFlightIO; // http://crbug.com/74623
  /external/chromium_org/net/disk_cache/
disk_cache_test_base.h 23 namespace disk_cache { namespace
31 } // namespace disk_cache
113 int OpenEntry(const std::string& key, disk_cache::Entry** entry);
114 int CreateEntry(const std::string& key, disk_cache::Entry** entry);
120 int OpenNextEntry(void** iter, disk_cache::Entry** next_entry);
123 int ReadData(disk_cache::Entry* entry, int index, int offset,
125 int WriteData(disk_cache::Entry* entry, int index, int offset,
127 int ReadSparseData(disk_cache::Entry* entry, int64 offset, net::IOBuffer* buf,
129 int WriteSparseData(disk_cache::Entry* entry, int64 offset,
149 scoped_ptr<disk_cache::Backend> cache_
    [all...]
disk_format_base.h 26 namespace disk_cache { namespace
129 } // namespace disk_cache
entry_impl.h 10 #include "net/disk_cache/disk_cache.h"
11 #include "net/disk_cache/disk_format.h"
12 #include "net/disk_cache/storage_block.h"
13 #include "net/disk_cache/storage_block-inl.h"
15 namespace disk_cache { namespace
276 } // namespace disk_cache
file_ios.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...]
file_win.cc 5 #include "net/disk_cache/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...]
mem_backend_impl.cc 5 #include "net/disk_cache/mem_backend_impl.h"
10 #include "net/disk_cache/cache_util.h"
11 #include "net/disk_cache/mem_entry_impl.h"
29 namespace disk_cache { namespace
337 } // namespace disk_cache
mem_entry_impl.h 12 #include "net/disk_cache/disk_cache.h"
14 namespace disk_cache { namespace
183 } // namespace disk_cache
sparse_control.h 14 #include "net/disk_cache/bitmap.h"
15 #include "net/disk_cache/disk_format.h"
22 namespace disk_cache { namespace
73 // again. See disk_cache::Entry::ReadyToUse() for more info.
175 } // namespace disk_cache
stats.h 12 #include "net/disk_cache/addr.h"
13 #include "net/disk_cache/stats_histogram.h"
19 namespace disk_cache { namespace
103 } // namespace disk_cache
  /external/chromium_org/net/disk_cache/simple/
simple_entry_operation.cc 5 #include "net/disk_cache/simple/simple_entry_operation.h"
9 #include "net/disk_cache/disk_cache.h"
10 #include "net/disk_cache/simple/simple_entry_impl.h"
12 namespace disk_cache { namespace
340 } // namespace disk_cache
simple_index.h 34 namespace disk_cache { namespace
206 } // namespace disk_cache
  /external/chromium_org/net/disk_cache/v3/
backend_worker.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 bool InitExperiment(disk_cache::IndexHeader* header, bool cache_created)
104 namespace disk_cache { namespace
    [all...]
sparse_control_v3.h 14 #include "net/disk_cache/bitmap.h"
15 #include "net/disk_cache/disk_format.h"
22 namespace disk_cache { namespace
68 // again. See disk_cache::Entry::ReadyToUse() for more info.
173 } // namespace disk_cache
  /external/chromium_org/net/tools/dump_cache/
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_org/net/url_request/
view_cache_helper.h 15 namespace disk_cache { namespace
18 } // namespace disk_cache
103 disk_cache::Backend* disk_cache_;
104 disk_cache::Entry* entry_;
  /external/chromium_org/webkit/browser/appcache/
mock_appcache_storage.h 114 AppCacheDiskCache* disk_cache() { function in class:appcache::MockAppCacheStorage
  /external/chromium/chrome/browser/
browsing_data_remover.h 24 namespace disk_cache { namespace
203 disk_cache::Backend* cache_;

Completed in 179 milliseconds

1 2 3 4 56 7 8 9