Searched refs:FileChannelImpl (Results 1 – 11 of 11) sorted by relevance
/libcore/luni/src/main/java/java/nio/ |
D | NioUtils.java | 29 import sun.nio.ch.FileChannelImpl; 56 return ((FileChannelImpl) fc).fd; in getFD() 66 return FileChannelImpl.open(fd, null, readable, writable, append, ioObject); in newFileChannel()
|
/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 | 57 public class FileChannelImpl class 91 private FileChannelImpl(FileDescriptor fd, String path, boolean readable, in FileChannelImpl() method in FileChannelImpl 112 return new FileChannelImpl(fd, path, readable, writable, false, parent); in open() 120 return new FileChannelImpl(fd, path, readable, writable, append, parent); in open() 465 if (target instanceof FileChannelImpl) in transferToDirectlyInternal() 489 if (target instanceof FileChannelImpl) { in transferToDirectly() 492 targetFD = ((FileChannelImpl)target).fd; in transferToDirectly() 537 if (!((target instanceof FileChannelImpl) || isSelChImpl)) in transferToTrustedChannel() 625 if (target instanceof FileChannelImpl && in transferTo() 626 !((FileChannelImpl)target).writable) in transferTo() [all …]
|
/libcore/ojluni/src/main/native/ |
D | FileChannelImpl.c | 283 NATIVE_METHOD(FileChannelImpl, initIDs, "()J"), 284 NATIVE_METHOD(FileChannelImpl, map0, "(IJJ)J"), 285 NATIVE_METHOD(FileChannelImpl, unmap0, "(JJ)I"), 286 NATIVE_METHOD(FileChannelImpl, position0, "(Ljava/io/FileDescriptor;J)J"), 287 …NATIVE_METHOD(FileChannelImpl, transferTo0, "(Ljava/io/FileDescriptor;JJLjava/io/FileDescriptor;)J…
|
D | openjdksub.mk | 25 FileChannelImpl.c \
|
/libcore/ojluni/src/main/java/java/io/ |
D | FileInputStream.java | 33 import sun.nio.ch.FileChannelImpl; 401 channel = FileChannelImpl.open(fd, path, true, false, this); in getChannel()
|
D | FileOutputStream.java | 33 import sun.nio.ch.FileChannelImpl; 404 channel = FileChannelImpl.open(fd, path, false, true, append, this); in getChannel()
|
D | RandomAccessFile.java | 30 import sun.nio.ch.FileChannelImpl; 302 channel = FileChannelImpl.open(fd, path, true, rw, this); in getChannel()
|
/libcore/ojluni/src/main/java/sun/nio/fs/ |
D | UnixChannelFactory.java | 33 import sun.nio.ch.FileChannelImpl; 106 return FileChannelImpl.open(fdObj, path, reading, writing, null); in newFileChannel() 137 … return FileChannelImpl.open(fdObj, path.toString(), flags.read, flags.write, flags.append, null); in newFileChannel()
|
/libcore/ |
D | openjdk_java_files.mk | 1460 ojluni/src/main/java/sun/nio/ch/FileChannelImpl.java \
|
/libcore/ojluni/ |
D | NOTICE | 8297 sun/nio/ch/FileChannelImpl.java follows.
|