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

1234567891011>>

/openjdk7/jdk/src/share/classes/java/io/
H A DFlushable.java32 * flush method is invoked to write any buffered output to the underlying
46 void flush() throws IOException; method in interface:Flushable
H A DFilterOutputStream.java133 * The <code>flush</code> method of <code>FilterOutputStream</code>
134 * calls the <code>flush</code> method of its underlying output stream.
139 public void flush() throws IOException { method in class:FilterOutputStream
140 out.flush();
148 * calls its <code>flush</code> method, and then calls the
152 * @see java.io.FilterOutputStream#flush()
157 flush();
H A DFilterWriter.java99 public void flush() throws IOException { method in class:FilterWriter
100 out.flush();
H A DObjectOutput.java81 public void flush() throws IOException; method in interface:ObjectOutput
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/gui/
H A DTypeScriptWriter.java53 public void flush() { method in class:TypeScriptWriter
54 script.flush();
59 script.flush();
/openjdk7/jdk/src/macosx/classes/sun/awt/
H A DSunToolkitSubclass.java28 // This class exists only so we can flush the PostEventQueue for the right AppContext
36 postEventQueue.flush();
/openjdk7/jdk/test/java/util/prefs/
H A DCheckUserPrefFirst.java40 prefs.flush();
H A DConflictInFlush.java27 * @summary flush() throws an IllegalStateException on a removed node
40 node.flush();
44 node.flush();
/openjdk7/langtools/test/tools/javac/TryWithResources/
H A DT7032633.java27 * @summary javac -Xlint:all warns about flush() within try on an auto-closeable resource
37 out.flush();
/openjdk7/langtools/test/tools/javac/implicitThis/
H A DNewBeforeOuterConstructed.java42 public void flush() { } method in class:NewBeforeOuterConstructed.NullOutputStream
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletImageRef.java43 public void flush() { method in class:AppletImageRef
44 super.flush();
/openjdk7/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...]
/openjdk7/hotspot/src/share/vm/utilities/
H A DdefaultStream.hpp75 void flush() { function in class:defaultStream
78 // assert(xxxxxx, "can not flush buffer inside signal handler");
79 xmlTextStream::flush();
81 if (has_log_file()) _log_file->flush();
/openjdk7/jdk/src/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();
/openjdk7/jdk/src/share/classes/sun/rmi/transport/proxy/
H A DHttpSendOutputStream.java91 public void flush() throws IOException method in class:HttpSendOutputStream
94 out.flush();
102 flush();
/openjdk7/jdk/src/share/classes/sun/swing/
H A DAccumulativeRunnable.java112 run(flush());
154 private final synchronized List<T> flush() { method in class:AccumulativeRunnable
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/util/
H A DNullStream.java45 public void flush() throws IOException { method in class:NullStream
/openjdk7/jdk/test/com/sun/tools/attach/
H A DApplication.java42 System.out.flush();
/openjdk7/jdk/test/java/io/DataOutputStream/
H A DWriteUTF.java36 dos.flush();
/openjdk7/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");
/openjdk7/jdk/test/java/io/
H A DSystemInAvailable.java40 System.out.flush();
/openjdk7/jdk/test/java/io/charStreams/
H A DLineLengthsSource.java44 private void flush() throws IOException { method in class:LineLengthsSource
45 uo.flush();
47 to.flush();
79 flush();
H A DRandomLineSource.java56 private void flush() throws IOException { method in class:RandomLineSource
58 uo.flush();
61 to.flush();
76 flush();
/openjdk7/langtools/src/share/classes/com/sun/tools/javap/
H A DInstructionDetailWriter.java57 void flush() { } method in class:InstructionDetailWriter
/openjdk7/jdk/test/java/security/SecureRandom/
H A DSerialize.java43 oos.flush();

Completed in 99 milliseconds

1234567891011>>