Searched refs:cacheDir (Results 1 – 4 of 4) sorted by relevance
93 File cacheDir = new File(getExternalCacheDir(), DOWNLOAD_FOLDER); in getDownloadCache() local95 if (!cacheDir.isDirectory()) cacheDir.mkdirs(); in getDownloadCache()97 if (!cacheDir.isDirectory()) { in getDownloadCache()99 "fail to create: " + cacheDir.getAbsolutePath()); in getDownloadCache()101 mDownloadCache = new DownloadCache(this, cacheDir, DOWNLOAD_CAPACITY); in getDownloadCache()
57 File cacheDir = mContext.getExternalCacheDir(); in loadStorageInfo() local58 if (cacheDir == null) { in loadStorageInfo()59 cacheDir = mContext.getCacheDir(); in loadStorageInfo()62 String path = cacheDir.getAbsolutePath(); in loadStorageInfo()
48 File cacheDir = context.getExternalCacheDir(); in getCache() local49 String path = cacheDir.getAbsolutePath() + "/" + filename; in getCache()75 File cacheDir = context.getExternalCacheDir(); in removeOldFilesIfNecessary() local76 String prefix = cacheDir.getAbsolutePath() + "/"; in removeOldFilesIfNecessary()
194 public static File prepareStorage(File cacheDir) { in prepareStorage() argument195 File clipDir = getClipDir(cacheDir); in prepareStorage()202 private static File getClipDir(File cacheDir) { in getClipDir() argument203 return new File(cacheDir, "clippings"); in getClipDir()