Searched defs:newFileChannel (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DAtomicAppend.java46 static FileChannel newFileChannel(File file) throws IOException { method in class:AtomicAppend
88 try (FileChannel fc = newFileChannel(file)) {
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsChannelFactory.java136 static FileChannel newFileChannel(String pathForWindows, method in class:WindowsChannelFactory
H A DWindowsFileSystemProvider.java96 public FileChannel newFileChannel(Path path, method in class:WindowsFileSystemProvider
110 .newFileChannel(file.getPathForWin32Calls(),
225 .newFileChannel(file.getPathForWin32Calls(),
325 .newFileChannel(file.getPathForWin32Calls(),
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixChannelFactory.java103 static FileChannel newFileChannel(int fd, String path, boolean reading, boolean writing) { method in class:UnixChannelFactory
112 static FileChannel newFileChannel(int dfd, method in class:UnixChannelFactory
144 static FileChannel newFileChannel(UnixPath path, method in class:UnixChannelFactory
149 return newFileChannel(-1, path, null, options, mode);
H A DUnixFileSystemProvider.java166 public FileChannel newFileChannel(Path obj, method in class:UnixFileSystemProvider
175 return UnixChannelFactory.newFileChannel(file, options, mode);
212 return UnixChannelFactory.newFileChannel(file, options, mode);
/openjdk7/jdk/src/share/classes/java/nio/file/spi/
H A DFileSystemProvider.java467 public FileChannel newFileChannel(Path path, method in class:FileSystemProvider
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystemProvider.java266 public FileChannel newFileChannel(Path path, method in class:ZipFileSystemProvider
271 return toZipPath(path).newFileChannel(options, attrs);
H A DZipPath.java743 FileChannel newFileChannel(Set<? extends OpenOption> options, method in class:ZipPath
747 return zfs.newFileChannel(getResolvedPath(), options, attrs);
H A DZipFileSystem.java564 // newFileChannel() instead, which dump the entry data into a regular
693 FileChannel newFileChannel(byte[] path, method in class:ZipFileSystem
726 .newFileChannel(tmpfile, options, attrs);

Completed in 49 milliseconds