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

123

/libcore/ojluni/src/main/java/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 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()
158 flush();
H A DOutputStream.java122 * to be written out. The general contract of <code>flush</code> is
134 * The <code>flush</code> method of <code>OutputStream</code> does nothing.
138 public void flush() throws IOException { method in class:OutputStream
H A DBufferedOutputStream.java107 * buffer, however, then this method will flush the buffer and write the
119 flush the output buffer and then write the data directly.
139 public synchronized void flush() throws IOException { method in class:BufferedOutputStream
141 out.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
H A DPipedOutputStream.java159 public synchronized void flush() throws IOException { method in class:PipedOutputStream
H A DPipedWriter.java160 public synchronized void flush() throws IOException { method in class:PipedWriter
H A DOutputStreamWriter.java228 public void flush() throws IOException { method in class:OutputStreamWriter
229 se.flush();
H A DStringWriter.java225 public void flush() { method in class:StringWriter
H A DWriter.java31 * subclass must implement are write(char[], int, int), flush(), and close().
301 * byte stream, flush it. Thus one flush() invocation will flush all the
313 abstract public void flush() throws IOException; method in class:Writer
317 * further write() or flush() invocations will cause an IOException to be
/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
H A DOldMemoryHandlerTest.java92 public void flush() {} method in class:OldMemoryHandlerTest.MockHandler
/libcore/ojluni/src/main/java/javax/crypto/
H A DCipherOutputStream.java179 public void flush() throws IOException { method in class:CipherOutputStream
184 output.flush();
194 * <code>flush</code> method of this output stream.
217 flush();
/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/ojluni/src/main/java/java/util/logging/
H A DStreamHandler.java179 flush();
256 public synchronized void flush() { method in class:StreamHandler
259 writer.flush();
277 writer.flush();
/libcore/ojluni/src/main/java/java/util/zip/
H A DDeflaterOutputStream.java64 * buffer size and flush mode.
70 * if {@code true} the {@link #flush()} method of this
71 * instance flushes the compressor with flush mode
112 * Creates a new output stream with the specified compressor, flush
118 * if {@code true} the {@link #flush()} method of this
119 * instance flushes the compressor with flush mode
151 * buffer size and the specified flush mode.
155 * if {@code true} the {@link #flush()} method of this
156 * instance flushes the compressor with flush mode
265 * with the flush mod
274 public void flush() throws IOException { method in class:DeflaterOutputStream
[all...]
H A DInflaterOutputStream.java144 public void flush() throws IOException { method in class:InflaterOutputStream
162 super.flush();
186 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
/libcore/luni/src/test/java/libcore/java/util/zip/
H A DDeflaterTest.java80 private void deflateInflate(int flush) throws DataFormatException { argument
82 compressed.length - totalDeflated, flush);

Completed in 8593 milliseconds

123