HomeSort by relevance Sort by last modified time
    Searched defs:DiskCache (Results 1 - 2 of 2) sorted by null

  /external/chromium/third_party/libjingle/source/talk/base/
diskcache.cc 35 #include "talk/base/diskcache.h"
50 class DiskCache;
58 DiskCacheAdapter(const DiskCache* cache, const std::string& id, size_t index,
68 const DiskCache* cache_;
74 // DiskCache
77 DiskCache::DiskCache() : max_cache_(0), total_size_(0), total_accessors_(0) {
80 DiskCache::~DiskCache() {
84 bool DiskCache::Initialize(const std::string& folder, size_t size)
    [all...]
diskcache.h 43 // DiskCache - An LRU cache of streams, stored on disk.
49 // DiskCache is designed to persist across executions of the program. It is
54 class DiskCache {
56 DiskCache();
57 virtual ~DiskCache();
97 return const_cast<DiskCache*>(this)->GetOrCreateEntry(id, false);
116 CacheLock(DiskCache* cache, const std::string& id, bool rollback = false)
133 DiskCache* cache_;

Completed in 41 milliseconds