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

123456

/dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/
H A DChannelsTest.java100 this.fouts.flush();
283 this.fouts.flush();
429 testouts.flush();
845 testWriter.flush();
866 testWriter.flush();
900 testWriter.flush();
919 testWriter.flush();
955 testWriter.flush();
981 testWriter.flush();
1023 testWriter.flush();
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DDalvInsnList.java244 iw.flush();
263 w.flush();
/dalvik/libcore/luni/src/main/java/java/io/
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 DCharArrayWriter.java96 public void flush() { method in class:CharArrayWriter
H A DDataOutputStream.java57 * if an error occurs attempting to flush this stream.
60 public void flush() throws IOException { method in class:DataOutputStream
61 super.flush();
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DFilterOutputStreamTest.java103 * @tests java.io.FilterOutputStream#flush()
107 method = "flush",
114 os.flush();
115 assertEquals("Test 1: Bytes not written after flush;",
120 os.flush();
H A DPipedOutputStreamTest.java200 * @tests java.io.PipedOutputStream#flush()
205 method = "flush",
213 assertTrue("Test 1: Bytes have been written before flush.", reader.available() != 0);
214 out.flush();
267 out.flush();
306 out.flush();
H A DObjectOutputStreamTest.java578 public void flush() throws IOException { method in class:ObjectOutputStreamTest.NoFlushTestOutputStream
579 super.flush();
788 assertFalse("flush() has been called on the target.",
842 * @tests java.io.ObjectOutputStream#flush()
846 method = "flush",
850 // Test for method void java.io.ObjectOutputStream.flush()
854 oos.flush();
855 assertTrue("Test 2: Failed to flush data.", bao.size() > size);
858 oos_ioe.flush();
892 oos.flush();
[all...]
/dalvik/libcore/security/src/test/java/tests/security/permissions/
H A DJavaIoObjectInputStreamTest.java108 oos.flush();
189 oos.flush();
/dalvik/libcore/sql/src/main/java/java/sql/
H A DDriverManager.java341 thePrintWriter.flush();
344 thePrintStream.flush();
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
H A DSerializerTraceWriter.java134 * Flush the internal buffer and flush the Writer
135 * @see java.io.Writer#flush()
137 public void flush() throws java.io.IOException method in class:SerializerTraceWriter
141 m_writer.flush();
181 /* If we are close to the end of the buffer then flush it.
229 * flush the output buffer and make the buffer bigger to handle.
290 * flush the output buffer and make the buffer bigger to handle.
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/platform/
H A DIMemorySystem.java557 public void flush(int addr, long size); method in interface:IMemorySystem
/dalvik/libcore/luni/src/test/java/com/google/coretests/
H A DCoreTestIsolator.java102 oos.flush();
/dalvik/libcore/luni/src/test/java/tests/api/java/lang/reflect/
H A DGenericSignatureFormatErrorTest.java87 fos.flush();
/dalvik/libcore/security/src/main/java/java/security/
H A DSignedObject.java81 oos.flush();
/dalvik/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
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
H A DDataLine.java118 void flush(); method in interface:DataLine
/dalvik/libcore/logging/src/main/java/java/util/logging/
H A DFileHandler.java576 flush();
631 public void flush() throws IOException { method in class:FileHandler.MeasureOutputStream
632 wrapped.flush();
/dalvik/libcore/nio/src/main/java/java/nio/channels/
H A DChannels.java498 flush();
499 outputStream.flush();
508 public void flush() throws IOException { method in class:Channels.ByteChannelWriter
/dalvik/libcore/nio_char/src/test/java/tests/api/java/nio/charset/
H A DAbstractCharsetDecoderTestCase.java356 decoder.flush(out);
522 * test flush
526 method = "flush",
533 assertSame(CoderResult.UNDERFLOW, decoder.flush(out));
539 .flush(CharBuffer.allocate(10)));
569 method = "flush",
585 CoderResult result = decoder.flush(out);
588 // Illegal state: flush twice
590 decoder.flush(out);
595 // Illegal state: flush afte
[all...]
H A DAbstractCharsetEncoderTestCase.java105 * methods which can change internal states are two encode, flush, two canEncode, reset
160 method = "flush",
172 CoderResult result = encoder.flush(out);
174 // Illegal state: flush twice
176 encoder.flush(out);
181 // Illegal state: flush after encode with endOfInput is false
185 encoder.flush(out);
215 method = "flush",
254 // Normal case: just after flush
258 encoder.flush(ByteBuffe
[all...]
H A DCharsetDecoderTest.java346 decoder.flush(out);
581 * test flush
587 assertSame(CoderResult.UNDERFLOW, decoder.flush(out));
593 .flush(CharBuffer.allocate(10)));
619 CoderResult result = decoder.flush(out);
622 // Illegal state: flush twice
624 decoder.flush(out);
629 // Illegal state: flush after decode with endOfInput is false
633 decoder.flush(out);
664 // Normal case: just after flush
[all...]
/dalvik/libcore/sql/src/main/java/SQLite/
H A DBlob.java179 public void flush() throws IOException { method in class:BlobW
/dalvik/libcore/support/src/test/java/tests/support/
H A DSupport_TestWebData.java116 out.flush();

Completed in 836 milliseconds

123456