Searched refs:DiskLruCache (Results 1 - 4 of 4) sorted by relevance

/external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
H A DDiskLruCacheWrapper.java9 import com.jakewharton.disklrucache.DiskLruCache;
49 private DiskLruCache diskLruCache;
57 private synchronized DiskLruCache getDiskCache() throws IOException {
59 diskLruCache = DiskLruCache.open(directory, APP_VERSION, VALUE_COUNT, maxSize);
72 final DiskLruCache.Snapshot snapshot = getDiskCache().get(safeKey);
88 DiskLruCache.Editor editor = getDiskCache().edit(safeKey);
/external/glide/third_party/disklrucache/
H A Ddisklrucache-2.0.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/jakewharton/ com/jakewharton/disklrucache/ com/jakewharton/disklrucache/DiskLruCache ...
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DHttpResponseCache.java19 import com.squareup.okhttp.internal.DiskLruCache;
130 private final DiskLruCache cache;
140 cache = DiskLruCache.open(directory, VERSION, ENTRY_COUNT, maxSize);
161 DiskLruCache.Snapshot snapshot;
214 DiskLruCache.Editor editor = null;
242 DiskLruCache.Snapshot snapshot = ((CacheResponseBody) cached.body()).snapshot;
243 DiskLruCache.Editor editor = null;
255 private void abortQuietly(DiskLruCache.Editor editor) {
337 private final DiskLruCache.Editor editor;
342 public CacheRequestImpl(final DiskLruCache
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/
H A DDiskLruCache.java86 public final class DiskLruCache implements Closeable { class in inherits:Closeable
90 static final String MAGIC = "libcore.io.DiskLruCache";
102 * libcore.io.DiskLruCache
117 * constant string "libcore.io.DiskLruCache", the disk cache's version,
161 new LinkedBlockingQueue<Runnable>(), Util.threadFactory("OkHttp DiskLruCache", true));
164 synchronized (DiskLruCache.this) {
181 private DiskLruCache(File directory, int appVersion, int valueCount, long maxSize) { method in class:DiskLruCache
200 public static DiskLruCache open(File directory, int appVersion, int valueCount, long maxSize)
222 DiskLruCache cache = new DiskLruCache(director
[all...]

Completed in 124 milliseconds