Searched refs:AsynchronousFileChannel (Results 1 – 12 of 12) sorted by relevance
/libcore/luni/src/test/java/libcore/java/nio/channels/ |
D | AsynchronousFileChannelTest.java | 27 import java.nio.channels.AsynchronousFileChannel; 61 AsynchronousFileChannel channel = AsynchronousFileChannel.open(newFile, in testOpen_create() 75 AsynchronousFileChannel channel = AsynchronousFileChannel.open(newFile, in testOpen_existing() 80 AsynchronousFileChannel.open(newFile, StandardOpenOption.CREATE_NEW); in testOpen_existing() 83 AsynchronousFileChannel.open(newFile, StandardOpenOption.CREATE_NEW, in testOpen_existing() 90 channel = AsynchronousFileChannel.open(newFile, StandardOpenOption.CREATE, in testOpen_existing() 101 AsynchronousFileChannel.open(nonExistent, StandardOpenOption.READ); in testOpen_nonexistent() 107 AsynchronousFileChannel.open(nonExistent, StandardOpenOption.WRITE); in testOpen_nonexistent() 118 AsynchronousFileChannel.open(nonExistent, StandardOpenOption.CREATE); in testOpen_nonexistent() 124 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 246 public static AsynchronousFileChannel open(Path file, in open() 301 public static AsynchronousFileChannel open(Path file, OpenOption... options) in open() 351 public abstract AsynchronousFileChannel truncate(long size) throws IOException; in truncate()
|
D | FileLock.java | 194 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 | 157 static AsynchronousFileChannel newAsynchronousFileChannel(UnixPath path, in newAsynchronousFileChannel()
|
D | UnixFileSystemProvider.java | 189 public AsynchronousFileChannel newAsynchronousFileChannel(Path obj, in newAsynchronousFileChannel()
|
/libcore/ |
D | openjdk_java_files.bp | 383 "ojluni/src/main/java/java/nio/channels/AsynchronousFileChannel.java",
|
D | EXPECTED_UPSTREAM | 414 …va/nio/channels/AsynchronousFileChannel.java,jdk11u/jdk-11.0.13-ga,src/java.base/share/classes/jav…
|
/libcore/api/ |
D | current.txt | 6641 public abstract class AsynchronousFileChannel implements java.nio.channels.AsynchronousChannel { 6642 ctor protected AsynchronousFileChannel(); 6648 …method public static java.nio.channels.AsynchronousFileChannel open(java.nio.file.Path, java.util.… 6649 …method public static java.nio.channels.AsynchronousFileChannel open(java.nio.file.Path, java.nio.f… 6653 …method public abstract java.nio.channels.AsynchronousFileChannel truncate(long) throws java.io.IOE… 6785 ctor protected FileLock(java.nio.channels.AsynchronousFileChannel, long, long, boolean); 7799 …method public java.nio.channels.AsynchronousFileChannel newAsynchronousFileChannel(java.nio.file.P…
|