Home | History | Annotate | Download | only in io

Lines Matching defs:append

69      * True if the file is opened for append.
71 private final boolean append;
137 * @param append if <code>true</code>, then bytes will be written
148 public FileOutputStream(String name, boolean append)
151 this(name != null ? new File(name) : null, append);
199 * @param append if <code>true</code>, then bytes will be written
212 public FileOutputStream(File file, boolean append)
232 this.append = append;
238 open(name, append);
284 this.append = false;
295 * @param append whether the file is to be opened in append mode
297 private native void open0(String name, boolean append)
304 * @param append whether the file is to be opened in append mode
306 private void open(String name, boolean append)
308 open0(name, append);
317 * @param append {@code true} if the write operation first
320 private native void write(int b, boolean append) throws IOException;
342 * @param append {@code true} to first advance the position to the
346 private native void writeBytes(byte b[], int off, int len, boolean append)
445 * append mode, in which case it will be equal to the size of the file.
458 channel = FileChannelImpl.open(fd, path, false, true, append, this);