Home
last modified time | relevance | path

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

/tools/tradefederation/core/src/com/android/tradefed/build/
DFileDownloadCache.java64 private final Map<String, File> mCacheMap = new CollapsedKeyMap<>(); field in FileDownloadCache
135 mCacheMap.put(cacheEntry.mRelPath, cacheEntry.mFile); in FileDownloadCache()
345 cachedFile = mCacheMap.remove(remotePath); in internalfetchRemoteFile()
351 mCacheMap.put(remotePath, cachedFile); in internalfetchRemoteFile()
464 Iterator<String> keyIterator = mCacheMap.keySet().iterator(); in incrementAndAdjustCache()
470 File file = mCacheMap.get(remotePath); in incrementAndAdjustCache()
510 return mCacheMap.get(remoteFilePath); in getCachedFile()
539 if (!mCacheMap.isEmpty()) { in getOldestEntry()
540 return mCacheMap.keySet().iterator().next(); in getOldestEntry()
568 File file = mCacheMap.remove(remoteFilePath); in deleteCacheEntry()