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

  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
DiskCache.java 11 public interface DiskCache {
  /external/chromium_org/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_;
  /external/chromium_org/third_party/webrtc/base/
diskcache.cc 18 #include "webrtc/base/diskcache.h"
33 class DiskCache;
41 DiskCacheAdapter(const DiskCache* cache, const std::string& id, size_t index,
51 const DiskCache* cache_;
57 // DiskCache
60 DiskCache::DiskCache() : max_cache_(0), total_size_(0), total_accessors_(0) {
63 DiskCache::~DiskCache() {
67 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_;
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/
SourceResourceRunner.java 12 import com.bumptech.glide.load.engine.cache.DiskCache;
26 public class SourceResourceRunner<T, Z, R> implements Runnable, DiskCache.Writer, Prioritized {
40 private final DiskCache diskCache;
50 ResourceEncoder<Z> encoder, ResourceTranscoder<Z, R> transcoder, DiskCache diskCache, Priority priority,
64 this.diskCache = diskCache;
106 diskCache.put(key, this);
123 diskCache.put(key.getOriginalKey(), new DiskCache.Writer()
    [all...]

Completed in 88 milliseconds