Searched refs:fLock (Results 1 – 1 of 1) sorted by relevance
189 FileLock fLock = mJvmLocks.get(remoteFilePath); in lockFile() local190 if (fLock == null) { in lockFile()197 fLock = FileChannel.open(f.toPath(), StandardOpenOption.WRITE).lock(); in lockFile()198 mJvmLocks.put(remoteFilePath, fLock); in lockFile()224 FileLock fLock = mJvmLocks.get(remoteFilePath); in tryLockFile() local225 if (fLock == null) { in tryLockFile()230 fLock = FileChannel.open(f.toPath(), StandardOpenOption.WRITE).tryLock(); in tryLockFile()231 mJvmLocks.put(remoteFilePath, fLock); in tryLockFile()237 if (fLock == null) { in tryLockFile()270 FileLock fLock = mJvmLocks.get(remoteFilePath); in unlockFile() local[all …]