Searched refs:failIfNotExists (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/classes/sun/nio/fs/
H A DAbstractFileSystemProvider.java96 * Deletes a file. The {@code failIfNotExists} parameters determines if an
99 abstract boolean implDelete(Path file, boolean failIfNotExists) throws IOException; argument
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileSystemProvider.java220 boolean implDelete(Path obj, boolean failIfNotExists) throws IOException { argument
236 if (!failIfNotExists && x.errno() == ENOENT)
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileSystemProvider.java238 boolean implDelete(Path obj, boolean failIfNotExists) throws IOException { argument
255 if (!failIfNotExists &&
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystem.java1332 public void deleteFile(byte[] path, boolean failIfNotExists) argument
1341 if (failIfNotExists)

Completed in 38 milliseconds