Searched refs:lockDir (Results 1 – 1 of 1) sorted by relevance
95 public LockableFileWriter(String fileName, boolean append, String lockDir) throws IOException { in LockableFileWriter() argument96 this(new File(fileName), append, lockDir); in LockableFileWriter()132 public LockableFileWriter(File file, boolean append, String lockDir) throws IOException { in LockableFileWriter() argument133 this(file, null, append, lockDir); in LockableFileWriter()159 String lockDir) throws IOException { in LockableFileWriter() argument171 if (lockDir == null) { in LockableFileWriter()172 lockDir = System.getProperty("java.io.tmpdir"); in LockableFileWriter()174 File lockDirFile = new File(lockDir); in LockableFileWriter()194 private void testLockDir(File lockDir) throws IOException { in testLockDir() argument195 if (!lockDir.exists()) { in testLockDir()[all …]