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

123

/dalvik/libcore/luni/src/main/java/java/io/
H A DFlushable.java32 void flush() throws IOException; method in interface:Flushable
H A DBufferedOutputStream.java105 * if an error occurs attempting to flush this stream.
108 public synchronized void flush() throws IOException { method in class:BufferedOutputStream
114 out.flush();
171 // 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.java25 * {@link #flush()} method to be called before closing the stream, to ensure all
65 public void flush() throws IOException { method in class:OutputStream
H A DPipedOutputStream.java116 public void flush() throws IOException { method in class:PipedOutputStream
H A DPipedWriter.java121 public void flush() throws IOException { method in class:PipedWriter
H A DBufferedWriter.java152 public void flush() throws IOException { method in class:BufferedWriter
158 out.flush();
H A DStringWriter.java82 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.
87 public abstract void flush() throws IOException; method in class:Writer
/dalvik/libcore/archive/src/test/java/java/util/zip/
H A DDeflaterTest.java56 private void deflateInflate(int flush) throws DataFormatException { argument
58 compressed.length - totalDeflated, flush);
/dalvik/libcore/crypto/src/main/java/javax/crypto/
H A DCipherOutputStream.java129 public void flush() throws IOException { method in class:CipherOutputStream
130 out.flush();
154 out.flush();
/dalvik/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();
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
H A DWriterChain.java38 * flush()
64 public void flush() throws IOException; method in interface:WriterChain
H A DWriterToASCI.java115 * byte stream, flush it. Thus one flush() invocation will flush all the
120 public void flush() throws java.io.IOException method in class:WriterToASCI
122 m_os.flush();
127 * further write() or flush() invocations will cause an IOException to be
/dalvik/libcore/archive/src/main/java/java/util/zip/
H A DDeflaterOutputStream.java232 @Override public void flush() throws IOException { method in class:DeflaterOutputStream
237 out.flush();
/dalvik/libcore/logging/src/main/java/java/util/logging/
H A DMemoryHandler.java187 * Call target handler to flush any buffered output. Note that this doesn't
191 public void flush() { method in class:MemoryHandler
192 target.flush();
H A DStreamHandler.java203 // flush first before set new encoding
204 this.flush();
238 this.writer.flush();
254 * this handler is written out. A flush operation and a subsequent close
272 public void flush() { method in class:StreamHandler
276 this.writer.flush();
278 this.os.flush();
/dalvik/dx/src/com/android/dx/util/
H A DTwoColumnOutput.java76 twoOut.flush();
153 public void flush() { method in class:TwoColumnOutput
/dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DErrorManagerTest.java69 st.flush();
107 public void flush() {} method in class:ErrorManagerTest.MockStream
H A DXMLFormatterTest.java291 public void flush() { method in class:XMLFormatterTest.MockHandler

Completed in 550 milliseconds

123