Searched refs:DiskCache (Results 1 - 15 of 15) sorted by relevance

/external/chromium_org/third_party/webrtc/base/
H A Ddiskcache.cc33 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) { function in class:rtc::DiskCache
63 DiskCache::~DiskCache() {
67 bool DiskCache::Initialize(const std::string& folder, size_t size) {
81 bool DiskCache
[all...]
H A Ddiskcache_win32.h18 class DiskCacheWin32 : public DiskCache {
H A Ddiskcache.h26 // 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 { class in namespace:rtc
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_;
H A Dhttpclient.h45 class DiskCache;
96 void set_cache(DiskCache* cache) { ASSERT(!IsCacheActive()); cache_ = cache; }
183 DiskCache* cache_;
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
H A DDiskCacheAdapter.java7 public class DiskCacheAdapter implements DiskCache {
H A DDiskCache.java11 public interface DiskCache { interface
H A DDiskLruCacheWrapper.java17 * The default DiskCache implementation. There must be no more than one active instance for a given
22 public class DiskLruCacheWrapper implements DiskCache {
31 * Get a DiskCache in the given directory and size. If a disk cache has alread been created with
39 public synchronized static DiskCache get(File directory, int maxSize) {
/external/glide/library/src/main/java/com/bumptech/glide/load/
H A DCacheLoader.java5 import com.bumptech.glide.load.engine.cache.DiskCache;
12 private DiskCache diskCache;
14 public CacheLoader(DiskCache diskCache) {
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/
H A DDefaultResourceRunnerFactory.java11 import com.bumptech.glide.load.engine.cache.DiskCache;
19 private DiskCache diskCache;
24 public DefaultResourceRunnerFactory(DiskCache diskCache, Handler mainHandler,
H A DSourceResourceRunner.java12 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,
123 diskCache.put(key.getOriginalKey(), new DiskCache.Writer() {
H A DEngine.java15 import com.bumptech.glide.load.engine.cache.DiskCache;
51 public Engine(MemoryCache memoryCache, DiskCache diskCache, ExecutorService resizeService,
56 Engine(ResourceRunnerFactory factory, MemoryCache cache, DiskCache diskCache, ExecutorService resizeService,
/external/glide/library/src/main/java/com/bumptech/glide/volley/
H A DRequestQueueWrapper.java15 import com.bumptech.glide.load.engine.cache.DiskCache;
25 public static RequestQueue getRequestQueue(Context context, DiskCache diskCache) {
H A DVolleyDiskCacheWrapper.java9 import com.bumptech.glide.load.engine.cache.DiskCache;
31 private final DiskCache diskCache;
34 public VolleyDiskCacheWrapper(DiskCache diskCache) {
64 diskCache.put(new StringKey(key), new DiskCache.Writer() {
/external/glide/library/src/main/java/com/bumptech/glide/
H A DGlideBuilder.java10 import com.bumptech.glide.load.engine.cache.DiskCache;
28 private DiskCache diskCache;
51 public GlideBuilder setDiskCache(DiskCache diskCache) {
H A DGlide.java20 import com.bumptech.glide.load.engine.cache.DiskCache;
69 * an {@link Engine}, {@link BitmapPool}, {@link DiskCache} and {@link MemoryCache}.

Completed in 128 milliseconds