HomeSort by relevance Sort by last modified time
    Searched refs:disklrucache (Results 1 - 10 of 10) sorted by null

  /prebuilts/maven_repo/bumptech/
update_repo.sh 19 third_party/java_src/android_libs/glide/third_party/disklrucache:libdisklrucache.jar \
20 third_party/java_src/android_libs/glide/third_party/disklrucache:libdisklrucache-src.jar \
28 cp -f blaze-bin/third_party/java_src/android_libs/glide/third_party/disklrucache/libdisklrucache.jar \
29 $TARGET_DIR/com/github/bumptech/glide/disklrucache/$DISKLRUCACHE_VERSION/disklrucache-$DISKLRUCACHE_VERSION.jar
30 cp -f blaze-bin/third_party/java_src/android_libs/glide/third_party/disklrucache/libdisklrucache-src.jar \
31 $TARGET_DIR/com/github/bumptech/glide/disklrucache/$DISKLRUCACHE_VERSION/disklrucache-$DISKLRUCACHE_VERSION-sources.jar
  /prebuilts/maven_repo/bumptech/com/github/bumptech/glide/disklrucache/1.0.0-SNAPSHOT/
disklrucache-1.0.0-SNAPSHOT.jar 
  /external/glide/
update_files.sh 34 rm -rf third_party/disklrucache
54 # Special case disklrucache because it's a submodule that we can't keep with
56 git submodule deinit third_party/disklrucache
57 git rm -rf third_party/disklrucache
58 rm -rf third_party/disklrucache
62 git clone https://github.com/sjudd/disklrucache $REMOTE_DISK_PATH
69 mv $REMOTE_DISK_PATH third_party/disklrucache
70 git add third_party/disklrucache
Android.mk 5 LOCAL_SRC_FILES += $(call all-java-files-under, third_party/disklrucache/src)
  /external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
Util.java 17 package com.bumptech.glide.disklrucache;
StrictLineReader.java 17 package com.bumptech.glide.disklrucache;
DiskLruCache.java 17 package com.bumptech.glide.disklrucache;
85 public final class DiskLruCache implements Closeable {
89 static final String MAGIC = "libcore.io.DiskLruCache";
100 * libcore.io.DiskLruCache
115 * constant string "libcore.io.DiskLruCache", the disk cache's version,
162 synchronized (DiskLruCache.this) {
176 private DiskLruCache(File directory, int appVersion, int valueCount, long maxSize) {
195 public static DiskLruCache open(File directory, int appVersion, int valueCount, long maxSize)
217 DiskLruCache cache = new DiskLruCache(directory, appVersion, valueCount, maxSize)
    [all...]
  /external/glide/library/src/main/java/com/bumptech/glide/load/engine/cache/
DiskLruCacheWrapper.java 9 import com.bumptech.glide.disklrucache.DiskLruCache;
31 private DiskLruCache diskLruCache;
56 private synchronized DiskLruCache getDiskCache() throws IOException {
57 if (diskLruCache == null) {
58 diskLruCache = DiskLruCache.open(directory, APP_VERSION, VALUE_COUNT, maxSize);
60 return diskLruCache;
71 final DiskLruCache.Value value = getDiskCache().get(safeKey)
    [all...]
  /packages/apps/Dialer/
Android.mk 225 dialer-disklrucache-target \
343 LOCAL_MODULE := dialer-disklrucache-target
345 LOCAL_SRC_FILES := ../../../prebuilts/maven_repo/bumptech/com/github/bumptech/glide/disklrucache/1.0.0-SNAPSHOT/disklrucache-1.0.0-SNAPSHOT$(COMMON_JAVA_PACKAGE_SUFFIX)
  /prebuilts/tools/common/m2/repository/com/github/bumptech/glide/glide/3.6.1/
glide-3.6.1.jar 

Completed in 735 milliseconds