Searched refs:AsynchronousFileChannel (Results 1 – 11 of 11) sorted by relevance
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
D | AsynchronousFileChannelTest.java | 27 import java.nio.channels.AsynchronousFileChannel; 59 AsynchronousFileChannel channel = AsynchronousFileChannel.open(newFile, in testOpen_create() 73 AsynchronousFileChannel channel = AsynchronousFileChannel.open(newFile, in testOpen_existing() 78 AsynchronousFileChannel.open(newFile, StandardOpenOption.CREATE_NEW); in testOpen_existing() 81 AsynchronousFileChannel.open(newFile, StandardOpenOption.CREATE_NEW, in testOpen_existing() 88 channel = AsynchronousFileChannel.open(newFile, StandardOpenOption.CREATE, in testOpen_existing() 99 AsynchronousFileChannel.open(nonExistent, StandardOpenOption.READ); in testOpen_nonexistent() 105 AsynchronousFileChannel.open(nonExistent, StandardOpenOption.WRITE); in testOpen_nonexistent() 116 AsynchronousFileChannel.open(nonExistent, StandardOpenOption.CREATE); in testOpen_nonexistent() 122 AsynchronousFileChannel.open(nonExistent, StandardOpenOption.CREATE, in testOpen_nonexistent() [all …]
|
/libcore/ojluni/src/main/java/java/nio/channels/ |
D | AsynchronousFileChannel.java | 114 public abstract class AsynchronousFileChannel class 120 protected AsynchronousFileChannel() { in AsynchronousFileChannel() method in AsynchronousFileChannel 241 public static AsynchronousFileChannel open(Path file, in open() 296 public static AsynchronousFileChannel open(Path file, OpenOption... options) in open() 341 public abstract AsynchronousFileChannel truncate(long size) throws IOException; in truncate()
|
D | FileLock.java | 185 protected FileLock(AsynchronousFileChannel channel, in FileLock()
|
/libcore/ojluni/src/main/java/sun/nio/ch/ |
D | FileLockImpl.java | 41 FileLockImpl(AsynchronousFileChannel channel, long position, long size, boolean shared) in FileLockImpl()
|
D | SimpleAsynchronousFileChannelImpl.java | 65 public static AsynchronousFileChannel open(FileDescriptor fdo, in open() 125 public AsynchronousFileChannel truncate(long size) throws IOException { in truncate()
|
D | AsynchronousFileChannelImpl.java | 41 extends AsynchronousFileChannel
|
/libcore/ojluni/src/main/java/java/nio/file/spi/ |
D | FileSystemProvider.java | 519 public AsynchronousFileChannel newAsynchronousFileChannel(Path path, in newAsynchronousFileChannel()
|
/libcore/ojluni/src/main/java/sun/nio/fs/ |
D | UnixChannelFactory.java | 154 static AsynchronousFileChannel newAsynchronousFileChannel(UnixPath path, in newAsynchronousFileChannel()
|
D | UnixFileSystemProvider.java | 183 public AsynchronousFileChannel newAsynchronousFileChannel(Path obj, in newAsynchronousFileChannel()
|
/libcore/ |
D | openjdk_java_files.bp | 366 "ojluni/src/main/java/java/nio/channels/AsynchronousFileChannel.java",
|
/libcore/api/ |
D | current.txt | 5992 public abstract class AsynchronousFileChannel implements java.nio.channels.AsynchronousChannel { 5993 ctor protected AsynchronousFileChannel(); 5999 …method public static java.nio.channels.AsynchronousFileChannel open(java.nio.file.Path, java.util.… 6000 …method public static java.nio.channels.AsynchronousFileChannel open(java.nio.file.Path, java.nio.f… 6004 …method public abstract java.nio.channels.AsynchronousFileChannel truncate(long) throws java.io.IOE… 6134 ctor protected FileLock(java.nio.channels.AsynchronousFileChannel, long, long, boolean); 7139 …method public java.nio.channels.AsynchronousFileChannel newAsynchronousFileChannel(java.nio.file.P…
|