Home
last modified time | relevance | path

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

/tools/tradefederation/core/javatests/com/android/tradefed/build/
DFileDownloadCacheFuncTest.java271 File cacheRoot = FileUtil.createTempDir("constructorTest"); in testConstructor_createCache() local
274 File file1 = new File(cacheRoot, REMOTE_PATH); in testConstructor_createCache()
279 File nestedDir = new File(cacheRoot, "aa"); in testConstructor_createCache()
284 FileDownloadCache cache = new FileDownloadCache(cacheRoot); in testConstructor_createCache()
289 FileUtil.recursiveDelete(cacheRoot); in testConstructor_createCache()
296 File cacheRoot = FileUtil.createTempDir("testConstructor_cacheExceeded"); in testConstructor_cacheExceeded() local
300 final File file1 = new File(cacheRoot, REMOTE_PATH); in testConstructor_cacheExceeded()
305 final File file2 = new File(cacheRoot, "anotherpath"); in testConstructor_cacheExceeded()
308 new FileDownloadCache(cacheRoot) { in testConstructor_cacheExceeded() argument
319 FileUtil.recursiveDelete(cacheRoot); in testConstructor_cacheExceeded()
/tools/tradefederation/core/src/com/android/tradefed/build/
DFileDownloadCache.java112 FileDownloadCache(File cacheRoot) { in FileDownloadCache() argument
113 mCacheRoot = cacheRoot; in FileDownloadCache()