Home | History | Annotate | Download | only in io

Lines Matching refs:channel

74      * The associated channel, initialized lazily.
76 private FileChannel channel;
389 * <p> If this stream has an associated channel then the channel is closed
408 if (channel != null) {
409 channel.close();
443 * position} of the returned channel will be equal to the
446 * Writing bytes to this stream will increment the channel's position
447 * accordingly. Changing the channel's position, either explicitly or by
450 * @return the file channel associated with this file output stream
457 if (channel == null) {
458 channel = FileChannelImpl.open(fd, path, false, true, append, this);
460 return channel;