Searched refs:flush (Results 1 - 25 of 1212) sorted by relevance

1234567891011>>

/openjdk9/jdk/src/java.base/share/classes/java/io/
H A DFlushable.java32 * flush method is invoked to write any buffered output to the underlying
45 void flush() throws IOException; method in interface:Flushable
H A DFilterWriter.java109 public void flush() throws IOException { method in class:FilterWriter
110 out.flush();
H A DObjectOutput.java81 public void flush() throws IOException; method in interface:ObjectOutput
/openjdk9/jdk/src/jdk.internal.le/share/classes/jdk/internal/jline/console/history/
H A DPersistentHistory.java27 void flush() throws IOException; method in interface:PersistentHistory
/openjdk9/jdk/src/java.logging/share/classes/java/util/logging/
H A DConsoleHandler.java96 flush();
100 * Override {@code StreamHandler.close} to do a flush but not
106 flush();
/openjdk9/langtools/test/tools/javac/TryWithResources/
H A DT7032633.java27 * @summary javac -Xlint:all warns about flush() within try on an auto-closeable resource
38 out.flush();
44 out.flush();
/openjdk9/hotspot/test/serviceability/attach/
H A DAttachWithStalePidFileTarget.java27 System.out.flush();
/openjdk9/jdk/test/java/util/prefs/
H A DCheckUserPrefFirst.java38 prefs.flush();
H A DConflictInFlush.java27 * @summary flush() throws an IllegalStateException on a removed node
40 node.flush();
44 node.flush();
/openjdk9/langtools/test/tools/javac/implicitThis/
H A DNewBeforeOuterConstructed.java19 public void flush() { } method in class:NewBeforeOuterConstructed.NullOutputStream
/openjdk9/langtools/src/jdk.jshell/share/classes/jdk/jshell/execution/
H A DExecutionControlForwarder.java66 flush();
73 flush();
80 flush();
106 private void flush() throws IOException { method in class:ExecutionControlForwarder
107 out.flush();
180 flush();
185 flush();
190 flush();
196 flush();
203 flush();
[all...]
H A DMultiplexingOutputStream.java71 delegate.flush();
76 public void flush() throws IOException { method in class:MultiplexingOutputStream
77 super.flush();
78 delegate.flush();
/openjdk9/jdk/test/java/util/Formatter/
H A DFlush.java27 * @summary Basic tests for flush().
47 public void flush() { method in class:Flush.F
60 // method coincidentally called flush()
61 public void flush() { method in class:Flush.NF
62 throw new RuntimeException("NF.flush should not be called");
68 // F.flush() called since F implements Flushable
70 f.flush();
71 throw new RuntimeException("F.flush not called");
73 System.out.println(" F.flush called");
76 // NF.flush() no
[all...]
/openjdk9/hotspot/src/share/vm/utilities/
H A DdefaultStream.hpp77 void flush() { function in class:defaultStream
80 // assert(xxxxxx, "can not flush buffer inside signal handler");
81 xmlTextStream::flush();
83 if (has_log_file()) _log_file->flush();
/openjdk9/jdk/src/java.base/share/classes/sun/net/www/http/
H A DHttpCaptureOutputStream.java66 public void flush() throws IOException { method in class:HttpCaptureOutputStream
68 capture.flush();
71 super.flush();
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/sjavac/
H A DAutoFlushWriter.java42 flush();
49 flush();
57 flush();
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.salver/src/org/graalvm/compiler/salver/serialize/
H A DAbstractSerializer.java57 public void flush() throws IOException { method in class:AbstractSerializer
59 writer.flush();
/openjdk9/jdk/src/java.desktop/share/classes/sun/swing/
H A DAccumulativeRunnable.java112 run(flush());
155 private final synchronized List<T> flush() { method in class:AccumulativeRunnable
/openjdk9/jaxws/src/jdk.xml.bind/share/classes/com/sun/tools/internal/xjc/util/
H A DNullStream.java45 public void flush() throws IOException { method in class:NullStream
/openjdk9/jdk/test/java/io/
H A DSystemInAvailable.java40 System.out.flush();
/openjdk9/jdk/test/java/io/charStreams/
H A DRandomLineSource.java56 private void flush() throws IOException { method in class:RandomLineSource
58 uo.flush();
61 to.flush();
76 flush();
H A DLineLengthsSource.java44 private void flush() throws IOException { method in class:LineLengthsSource
45 uo.flush();
47 to.flush();
79 flush();
/openjdk9/jdk/test/java/io/DataOutputStream/
H A DWriteUTF.java36 dos.flush();
/openjdk9/jdk/test/java/io/PipedWriter/
H A DFlushAfterClose.java26 @summary Test if flush throws exception after writer
40 pw.flush();
41 throw new Exception("Should not allow flush after close");
/openjdk9/jdk/test/com/sun/tools/attach/
H A DApplication.java37 System.out.flush();

Completed in 314 milliseconds

1234567891011>>