Searched defs:flush (Results 1 - 25 of 58) sorted by relevance

123

/libcore/luni/src/main/java/java/io/
H A DFlushable.java32 void flush() throws IOException; method in interface:Flushable
H A DBufferedOutputStream.java80 * if an error occurs attempting to flush this stream.
83 public synchronized void flush() throws IOException { method in class:BufferedOutputStream
86 out.flush();
137 // flush the internal buffer first if we have not enough space left
H A DFilterOutputStream.java61 flush();
84 * if an error occurs attempting to flush this stream.
87 public void flush() throws IOException { method in class:FilterOutputStream
88 out.flush();
H A DFilterWriter.java67 * if an error occurs attempting to flush this writer.
70 public void flush() throws IOException { method in class:FilterWriter
72 out.flush();
H A DObjectOutput.java43 public void flush() throws IOException; method in interface:ObjectOutput
H A DOutputStream.java74 public void flush() throws IOException { method in class:OutputStream
H A DPipedOutputStream.java106 public void flush() throws IOException { method in class:PipedOutputStream
H A DPipedWriter.java106 public void flush() throws IOException { method in class:PipedWriter
H A DBufferedWriter.java120 public void flush() throws IOException { method in class:BufferedWriter
124 out.flush();
H A DConsole.java59 public void flush() { method in class:Console
60 writer.flush();
77 f.flush();
171 flush();
H A DStringWriter.java79 public void flush() { method in class:StringWriter
H A DWriter.java23 * {@link #flush()} method to be called before closing the stream, to ensure all
28 * {@link #close()} and {@link #flush()} methods needs to be overridden.
83 public abstract void flush() throws IOException; method in class:Writer
/libcore/luni/src/main/java/javax/crypto/
H A DCipherOutputStream.java108 public void flush() throws IOException { method in class:CipherOutputStream
109 out.flush();
133 out.flush();
/libcore/luni/src/test/java/libcore/java/io/
H A DOutputStreamWriterTest.java28 @Override public void flush() throws IOException { method in class:OutputStreamWriterTest.FlushCountingOutputStream
42 writer.flush();
52 // On flush/close, the writer needs to admit defeat and write the replacement character.
59 writer.flush();
/libcore/luni/src/test/java/libcore/java/util/logging/
H A DOldXMLFormatterTest.java71 public void flush() {} method in class:OldXMLFormatterTest.MockHandler
H A DOldErrorManagerTest.java43 st.flush();
51 public void flush() {} method in class:OldErrorManagerTest.MockStream
/libcore/support/src/test/java/tests/support/
H A DSupport_ASimpleOutputStream.java48 public void flush() throws IOException { method in class:Support_ASimpleOutputStream
H A DSupport_StringWriter.java68 public void flush() { method in class:Support_StringWriter
H A DSupport_ASimpleWriter.java48 public void flush() throws IOException { method in class:Support_ASimpleWriter
H A DSupport_OutputStream.java50 public void flush() throws IOException { method in class:Support_OutputStream
54 super.flush();
/libcore/luni/src/main/java/java/util/logging/
H A DMemoryHandler.java168 * Call target handler to flush any buffered output. Note that this doesn't
172 public void flush() { method in class:MemoryHandler
173 target.flush();
/libcore/luni/src/main/java/java/util/zip/
H A DDeflaterOutputStream.java72 * Constructs a new instance with the given flushing behavior (see {@link #flush}).
81 * flushing behavior (see {@link #flush}).
90 * flushing behavior (see {@link #flush}).
190 @Override public void flush() throws IOException { method in class:DeflaterOutputStream
191 // Though not documented, it's illegal to call deflate with any flush param
200 out.flush();
H A DInflaterOutputStream.java100 public void flush() throws IOException { method in class:InflaterOutputStream
102 out.flush();
/libcore/luni/src/test/java/libcore/java/util/zip/
H A DDeflaterTest.java59 private void deflateInflate(int flush) throws DataFormatException { argument
61 compressed.length - totalDeflated, flush);
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
H A DWriterTest.java88 public synchronized void flush() throws IOException { method in class:WriterTest.MockLockWriter
113 flush();
117 public synchronized void flush() throws IOException { method in class:WriterTest.MockWriter

Completed in 603 milliseconds

123