Home
last modified time | relevance | path

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

/packages/apps/Email/src/org/apache/commons/io/output/
DLockableFileWriter.java95 public LockableFileWriter(String fileName, boolean append, String lockDir) throws IOException { in LockableFileWriter() argument
96 this(new File(fileName), append, lockDir); in LockableFileWriter()
132 public LockableFileWriter(File file, boolean append, String lockDir) throws IOException { in LockableFileWriter() argument
133 this(file, null, append, lockDir); in LockableFileWriter()
159 String lockDir) throws IOException { in LockableFileWriter() argument
171 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() argument
195 if (!lockDir.exists()) { in testLockDir()
[all …]