Home
last modified time | relevance | path

Searched refs:ioObject (Results 1 – 2 of 2) sorted by relevance

/libcore/luni/src/main/java/java/nio/
DNioUtils.java50 public static FileChannel newFileChannel(Closeable ioObject, FileDescriptor fd, int mode) { in newFileChannel() argument
51 return new FileChannelImpl(ioObject, fd, mode); in newFileChannel()
DFileChannelImpl.java55 private final Closeable ioObject; field in FileChannelImpl
66 public FileChannelImpl(Closeable ioObject, FileDescriptor fd, int mode) { in FileChannelImpl() argument
68 this.ioObject = ioObject; in FileChannelImpl()
91 ioObject.close(); in implCloseChannel()