Searched refs:mFileLocks (Results 1 – 1 of 1) sorted by relevance
70 private final Map<String, ReentrantLock> mFileLocks = new CollapsedKeyMap<>(); field in FileDownloadCache207 synchronized (mFileLocks) { in lockFile()208 fileLock = mFileLocks.get(remoteFilePath); in lockFile()211 mFileLocks.put(remoteFilePath, fileLock); in lockFile()241 synchronized (mFileLocks) { in tryLockFile()242 ReentrantLock fileLock = mFileLocks.get(remoteFilePath); in tryLockFile()245 mFileLocks.put(remoteFilePath, fileLock); in tryLockFile()257 synchronized (mFileLocks) { in unlockFile()258 ReentrantLock fileLock = mFileLocks.get(remoteFilePath); in unlockFile()261 mFileLocks.remove(remoteFilePath); in unlockFile()