Searched refs:FileChannelImpl (Results 1 – 8 of 8) sorted by relevance
/libcore/ojluni/src/main/java/sun/nio/ch/ |
D | FileLockImpl.java | 60 if (ch instanceof FileChannelImpl) in release() 61 ((FileChannelImpl)ch).release(this); in release()
|
D | FileChannelImpl.java | 58 public class FileChannelImpl class 98 private FileChannelImpl(FileDescriptor fd, String path, boolean readable, in FileChannelImpl() method in FileChannelImpl 120 return new FileChannelImpl(fd, path, readable, writable, false, parent); in open() 128 return new FileChannelImpl(fd, path, readable, writable, append, parent); in open() 484 if (target instanceof FileChannelImpl) in transferToDirectlyInternal() 508 if (target instanceof FileChannelImpl) { in transferToDirectly() 511 targetFD = ((FileChannelImpl)target).fd; in transferToDirectly() 556 if (!((target instanceof FileChannelImpl) || isSelChImpl)) in transferToTrustedChannel() 644 if (target instanceof FileChannelImpl && in transferTo() 645 !((FileChannelImpl)target).writable) in transferTo() [all …]
|
/libcore/luni/src/main/java/java/nio/ |
D | NioUtils.java | 28 import sun.nio.ch.FileChannelImpl; 74 return ((FileChannelImpl) fc).fd; in getFD() 86 return FileChannelImpl.open(fd, null, readable, writable, append, ioObject); in newFileChannel()
|
/libcore/ojluni/src/main/java/java/io/ |
D | FileInputStream.java | 36 import sun.nio.ch.FileChannelImpl; 475 channel = FileChannelImpl.open(fd, path, true, false, this); in getChannel()
|
D | FileOutputStream.java | 39 import sun.nio.ch.FileChannelImpl; 478 channel = FileChannelImpl.open(fd, path, false, true, append, this); in getChannel()
|
D | RandomAccessFile.java | 31 import sun.nio.ch.FileChannelImpl; 350 channel = FileChannelImpl.open(fd, path, true, rw, this); in getChannel()
|
/libcore/ojluni/src/main/native/ |
D | Android.bp | 46 "FileChannelImpl.c",
|
/libcore/ |
D | openjdk_java_files.bp | 1547 "ojluni/src/main/java/sun/nio/ch/FileChannelImpl.java",
|