Home
last modified time | relevance | path

Searched refs:getCleanFile (Results 1 – 2 of 2) sorted by relevance

/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/
DDiskLruCacheTest.java268 File k1 = getCleanFile("k1", 0); in explicitRemoveAppliedToDiskImmediately()
317 File cleanFile0 = getCleanFile("k1", 0); in openWithDirtyKeyDeletesAllFilesForThatKey()
318 File cleanFile1 = getCleanFile("k1", 1); in openWithDirtyKeyDeletesAllFilesForThatKey()
386 writeFile(getCleanFile("k1", 0), "A"); in openWithTruncatedLineDiscardsThatLine()
387 writeFile(getCleanFile("k1", 1), "B"); in openWithTruncatedLineDiscardsThatLine()
453 assertFalse(fileSystem.exists(getCleanFile("k1", 0))); in createNewEntryWithTooFewValuesFails()
454 assertFalse(fileSystem.exists(getCleanFile("k1", 1))); in createNewEntryWithTooFewValuesFails()
469 assertFalse(fileSystem.exists(getCleanFile("k1", 0))); in revertWithTooFewValues()
470 assertFalse(fileSystem.exists(getCleanFile("k1", 1))); in revertWithTooFewValues()
764 fileSystem.delete(getCleanFile("a", 1)); in fileDeletedExternally()
[all …]
/external/glide/third_party/disklrucache/src/main/java/com/bumptech/glide/disklrucache/
DDiskLruCache.java335 deleteIfExists(entry.getCleanFile(t)); in processJournal()
525 File clean = entry.getCleanFile(i); in completeEdit()
588 File file = entry.getCleanFile(i); in remove()
728 return new FileInputStream(entry.getCleanFile(index)); in newInputStream()
867 public File getCleanFile(int i) { in getCleanFile() method in DiskLruCache.Entry