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

  /frameworks/volley/tests/src/com/android/volley/toolbox/
DiskBasedCacheTest.java 22 import com.android.volley.toolbox.DiskBasedCache.CacheHeader;
58 DiskBasedCache.writeInt(baos, 0);
59 DiskBasedCache.writeInt(baos, 19791214);
60 DiskBasedCache.writeInt(baos, -20050711);
61 DiskBasedCache.writeInt(baos, Integer.MIN_VALUE);
62 DiskBasedCache.writeInt(baos, Integer.MAX_VALUE);
64 assertEquals(DiskBasedCache.readInt(bais), 0);
65 assertEquals(DiskBasedCache.readInt(bais), 19791214);
66 assertEquals(DiskBasedCache.readInt(bais), -20050711);
67 assertEquals(DiskBasedCache.readInt(bais), Integer.MIN_VALUE)
    [all...]
  /frameworks/volley/src/com/android/volley/toolbox/
DiskBasedCache.java 42 public class DiskBasedCache implements Cache {
67 * Constructs an instance of the DiskBasedCache at the specified directory.
71 public DiskBasedCache(File rootDirectory, int maxCacheSizeInBytes) {
77 * Constructs an instance of the DiskBasedCache at the specified directory using
81 public DiskBasedCache(File rootDirectory) {
135 * Initializes the DiskBasedCache by scanning for all files currently in the

Completed in 270 milliseconds