Searched refs:flush (Results 51 - 75 of 166) sorted by relevance

1234567

/libcore/luni/src/test/java/libcore/java/util/logging/
H A DOldXMLFormatterTest.java71 public void flush() {} method in class:OldXMLFormatterTest.MockHandler
/libcore/ojluni/src/main/java/java/io/
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 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
H A DDataOutputStream.java115 * The <code>flush</code> method of <code>DataOutputStream</code>
116 * calls the <code>flush</code> method of its underlying output stream.
120 * @see java.io.OutputStream#flush()
122 public void flush() throws IOException { method in class:DataOutputStream
123 out.flush();
H A DConsole.java171 formatter.format(fmt, args).flush();
360 public void flush() { method in class:Console
361 pw.flush();
/libcore/support/src/test/java/libcore/java/io/
H A DNullPrintStream.java35 public void flush() {} method in class:NullPrintStream
/libcore/support/src/test/java/tests/support/
H A DSupport_ASimpleWriter.java48 public void flush() throws IOException { method in class:Support_ASimpleWriter
H A DSupport_StringWriter.java68 public void flush() { method in class:Support_StringWriter
/libcore/luni/src/test/java/libcore/java/io/
H A DOldObjectOutputStreamTest.java114 public void flush() throws IOException { method in class:OldObjectOutputStreamTest.NoFlushTestOutputStream
115 super.flush();
206 assertFalse("flush() has been called on the target.",
221 // Test for method void java.io.ObjectOutputStream.flush()
225 oos.flush();
226 assertTrue("Test 2: Failed to flush data.", bao.size() > size);
229 oos_ioe.flush();
253 oos.flush();
H A DOldDataOutputStreamTest.java53 os.flush();
60 assertEquals("Test 3: Failed to flush correctly;", 9087589, c);
65 os.flush();
H A DOldFilterOutputStreamTest.java84 os.flush();
85 assertEquals("Test 1: Bytes not written after flush;",
90 os.flush();
H A DOldCharArrayWriterTest.java124 writer.flush();
/libcore/luni/src/main/native/
H A Dlibcore_icu_NativeConverter.cpp175 static bool shouldCodecThrow(jboolean flush, UErrorCode error) { argument
176 if (flush) {
185 jintArray data, jboolean flush) {
216 ucnv_fromUnicode(cnv , &cTarget, cTargetLimit, &mySource, mySourceLimit, NULL, (UBool) flush, &errorCode);
233 if (shouldCodecThrow(flush, errorCode)) {
241 jintArray data, jboolean flush) {
272 ucnv_toUnicode(cnv, &cTarget, cTargetLimit, &mySource, mySourceLimit, NULL, flush, &errorCode);
289 if (shouldCodecThrow(flush, errorCode)) {
183 NativeConverter_encode(JNIEnv* env, jclass, jlong address, jcharArray source, jint sourceEnd, jbyteArray target, jint targetEnd, jintArray data, jboolean flush) argument
239 NativeConverter_decode(JNIEnv* env, jclass, jlong address, jbyteArray source, jint sourceEnd, jcharArray target, jint targetEnd, jintArray data, jboolean flush) argument
/libcore/ojluni/src/main/java/java/util/zip/
H A DZipCoder.java66 cr = cd.flush(cb);
96 cr = ce.flush(bb);
/libcore/luni/src/test/java/libcore/java/util/zip/
H A DGZIPOutputStreamTest.java80 // Calling flush() after finish() shouldn't throw.
81 gzipOutputStream.flush();
/libcore/ojluni/src/main/java/java/security/
H A DSignedObject.java153 // write and flush the object content to byte array
155 a.flush();
/libcore/ojluni/src/main/java/java/util/logging/
H A DHandler.java95 public abstract void flush(); method in class:Handler
100 * The close method will perform a <tt>flush</tt> and then close the
H A DSocketHandler.java210 flush();
/libcore/xml/src/main/java/org/xmlpull/v1/
H A DXmlSerializer.java315 * before flush() is called on underlying output stream.
322 void flush () method in interface:XmlSerializer
/libcore/luni/src/test/java/libcore/java/nio/charset/
H A DCharsetDecoderTest.java48 decoder.flush(outBuffer);
64 decoder.flush(outBuffer);
107 cr = decoder.flush(cb);
/libcore/ojluni/src/main/java/sun/nio/cs/
H A DStreamEncoder.java138 public void flush() throws IOException { method in class:StreamEncoder
297 out.flush();
304 CoderResult cr = encoder.flush(bb);
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/charset/
H A DCharsetEncoderTest.java261 * methods which can change internal states are two encode, flush, two canEncode, reset
288 encoder.flush(out);
297 CoderResult result = encoder.flush(out);
299 // Good state: flush twice
300 encoder.flush(out);
302 // Illegal state: flush after encode with endOfInput is false
306 encoder.flush(out);
315 //Illegal state: flush after instance created
317 encoder.flush(out);
361 // Normal case: just after flush
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/nio/channels/
H A DChannelsTest.java91 this.fouts.flush();
241 this.fouts.flush();
540 testWriter.flush();
568 testWriter.flush();
572 testWriter.flush();
576 testWriter.flush();
585 testWriter.flush();

Completed in 4066 milliseconds

1234567