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

  /external/ImageMagick/MagickCore/
cache.h 30 DiskCache,
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
DiskCache.java 10 public interface DiskCache {
  /external/webrtc/webrtc/base/
diskcache.cc 20 #include "webrtc/base/diskcache.h"
35 class DiskCache;
43 DiskCacheAdapter(const DiskCache* cache, const std::string& id, size_t index,
53 const DiskCache* cache_;
59 // DiskCache
62 DiskCache::DiskCache() : max_cache_(0), total_size_(0), total_accessors_(0) {
65 DiskCache::~DiskCache() {
69 bool DiskCache::Initialize(const std::string& folder, size_t size)
    [all...]
diskcache.h 26 // DiskCache - An LRU cache of streams, stored on disk.
32 // DiskCache is designed to persist across executions of the program. It is
37 class DiskCache {
39 DiskCache();
40 virtual ~DiskCache();
80 return const_cast<DiskCache*>(this)->GetOrCreateEntry(id, false);
99 CacheLock(DiskCache* cache, const std::string& id, bool rollback = false)
116 DiskCache* cache_;

Completed in 96 milliseconds