Searched refs:APPEND (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/src/share/classes/java/nio/file/
H A DStandardOpenOption.java52 APPEND, enum constant in enum:StandardOpenOption
/openjdk7/jdk/test/java/nio/channels/FileChannel/
H A DAtomicAppend.java50 return FileChannel.open(file.toPath(), APPEND);
59 return Files.newOutputStream(file.toPath(), APPEND);
H A DPosition.java68 FileChannel.open(blah, APPEND) :
H A DTruncate.java98 FileChannel.open(blah.toPath(), APPEND))
H A DLock.java178 try (FileChannel fc = FileChannel.open(blah.toPath(), APPEND)) {
/openjdk7/jdk/test/java/util/zip/ZipFile/
H A DReadZip.java68 StandardOpenOption.APPEND)) {
/openjdk7/jdk/src/share/classes/java/lang/
H A DProcessBuilder.java491 APPEND enum constant in enum:ProcessBuilder.Redirect.Type
610 * Redirect.appendTo(file).type() == Redirect.Type.APPEND
620 public Type type() { return Type.APPEND; }
695 * {@link Redirect.Type#APPEND APPEND}
700 source.type() == Redirect.Type.APPEND)
/openjdk7/jdk/test/java/nio/file/Files/
H A DSBC.java161 // test APPEND option
166 try (SeekableByteChannel sbc = Files.newByteChannel(file, CREATE_NEW, WRITE, APPEND)) {
180 try (SeekableByteChannel sbc = Files.newByteChannel(file, APPEND)) {
353 Files.newByteChannel(file, READ, APPEND);
358 Files.newByteChannel(file, WRITE, APPEND, TRUNCATE_EXISTING);
H A DBytesAndLines.java109 write(path, b2, StandardOpenOption.APPEND);
204 write(tmpfile, lines, US_ASCII, StandardOpenOption.APPEND);
/openjdk7/jdk/test/java/nio/file/WatchService/
H A DLotsOfEvents.java205 try (OutputStream out = Files.newOutputStream(file, StandardOpenOption.APPEND)) {
H A DBasic.java145 try (OutputStream out = Files.newOutputStream(file, StandardOpenOption.APPEND)) {
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A Dpng.c611 # define APPEND(ch)\ macro
616 APPEND(' ');
618 APPEND(' ');
620 APPEND(' ');
622 APPEND(':');
624 APPEND(':');
628 # undef APPEND macro
/openjdk7/hotspot/src/share/vm/runtime/
H A DobjectMonitor.hpp41 enum Sorted { PREPEND, APPEND, SORTED } ; enumerator in enum:ObjectWaiter::Sorted
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsChannelFactory.java91 case APPEND : flags.append = true; break;
155 throw new IllegalArgumentException("READ + APPEND not allowed");
157 throw new IllegalArgumentException("APPEND + TRUNCATE_EXISTING not allowed");
192 throw new UnsupportedOperationException("APPEND not allowed");
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixChannelFactory.java75 case APPEND : flags.append = true; break;
132 throw new IllegalArgumentException("READ + APPEND not allowed");
134 throw new IllegalArgumentException("APPEND + TRUNCATE_EXISTING not allowed");
170 throw new UnsupportedOperationException("APPEND not allowed");
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystem.java507 if (opt == APPEND)
574 options.contains(StandardOpenOption.APPEND)) {
581 if (options.contains(StandardOpenOption.APPEND)) {
700 options.contains(StandardOpenOption.APPEND));
/openjdk7/jdk/test/java/lang/ProcessBuilder/
H A DBasic.java841 equal(Redirect.appendTo(ofile).type(), Redirect.Type.APPEND);

Completed in 85 milliseconds