Searched refs:maxEntries (Results 1 – 2 of 2) sorted by relevance
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/ |
D | BlobCache.java | 133 public BlobCache(String path, int maxEntries, int maxBytes, boolean reset) in BlobCache() argument 135 this(path, maxEntries, maxBytes, reset, 0); in BlobCache() 138 public BlobCache(String path, int maxEntries, int maxBytes, boolean reset, in BlobCache() argument 149 resetCache(maxEntries, maxBytes); in BlobCache() 300 private void resetCache(int maxEntries, int maxBytes) throws IOException { in resetCache() argument 302 mIndexFile.setLength(INDEX_HEADER_SIZE + maxEntries * 12 * 2); in resetCache() 306 writeInt(buf, IH_MAX_ENTRIES, maxEntries); in resetCache()
|
/packages/apps/Gallery2/src/com/android/gallery3d/util/ |
D | CacheManager.java | 40 int maxEntries, int maxBytes, int version) { in getCache() argument 51 cache = new BlobCache(path, maxEntries, maxBytes, false, in getCache()
|