Searched refs:flush (Results 76 - 100 of 149) sorted by relevance

123456

/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DDataOutputStreamTest.java62 * @tests java.io.DataOutputStream#flush()
66 method = "flush",
76 os.flush();
83 assertEquals("Test 3: Failed to flush correctly;", 9087589, c);
88 os.flush();
H A DWriterTest.java304 flush();
308 public synchronized void flush() throws IOException { method in class:WriterTest.MockWriter
H A DStringWriterTest.java75 * @tests java.io.StringWriter#flush()
80 method = "flush",
84 // Test for method void java.io.StringWriter.flush()
85 sw.flush();
87 assertEquals("Failed to flush char", "c", sw.toString());
/dalvik/libcore/nio_char/src/main/java/java/nio/charset/
H A DCharsetDecoder.java44 * <li>invoking the {@link #flush(CharBuffer) flush} method to flush the
229 result = flush(output);
481 * During the flush, the output buffer's position will be changed
496 public final CoderResult flush(CharBuffer out) { method in class:CharsetDecoder
H A DCharsetEncoder.java44 * <li>invoking the {@link #flush(ByteBuffer) flush} method to flush the
333 result = flush(output);
540 * During the flush, the output buffer's position will be changed
555 public final CoderResult flush(ByteBuffer out) { method in class:CharsetEncoder
/dalvik/libcore/security/src/test/java/tests/api/java/security/
H A DPermissionCollectionTest.java139 fileOut.flush();
163 fout.flush();
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
H A DWriterToUTF8Buffered.java33 * is done via the close() flush() or flushBuffer() method.
135 /* If we are close to the end of the buffer then flush it.
457 * byte stream, flush it. Thus one flush() invocation will flush all the
464 public void flush() throws java.io.IOException method in class:WriterToUTF8Buffered
467 m_os.flush();
472 * further write() or flush() invocations will cause an IOException to be
/dalvik/libcore/luni/src/test/java/tests/api/java/net/
H A DSocketTest.java1169 theOutput.flush();
1216 theOutput.flush();
1804 theOutput.flush();
1823 theOutput2.flush();
2118 theOutput.flush();
2137 theOutput2.flush();
2659 theOutput.flush();
2665 theOutput.flush();
2701 theOutput.flush();
2708 theOutput.flush();
[all...]
/dalvik/dx/src/com/android/dx/command/dexer/
H A DMain.java447 humanOut.flush();
507 jarOut.flush();
577 * {@link System#out} in which case this method does the flush but not
588 stream.flush();
726 pw.flush();
/dalvik/dx/src/com/android/dx/command/dump/
H A DBaseDumper.java289 iw.flush();
/dalvik/libcore/archive/src/main/java/java/util/jar/
H A DInitManifest.java202 while (CoderResult.OVERFLOW == decoder.flush(cBuf)) {
H A DManifest.java400 r = encoder.flush(bBuf);
/dalvik/libcore/archive/src/test/java/org/apache/harmony/archive/tests/java/util/jar/
H A DJarOutputStreamTest.java98 jout.flush();
/dalvik/libcore/luni/src/test/java/java/net/
H A DURLConnectionTest.java170 out.flush();
/dalvik/libcore/nio_char/src/test/java/tests/api/java/nio/charset/
H A DISOCharsetEncoderTest.java141 notes = "Checks also: flush & encode, but not covers exceptions.",
147 notes = "Checks also: flush & encode, but not covers exceptions.",
153 notes = "Checks also: flush & encode, but not covers exceptions.",
170 encoder.flush(out);
/dalvik/libcore/prefs/src/main/java/java/util/prefs/
H A DAbstractPreferences.java70 uroot.flush();
75 sroot.flush();
226 * only flush this node and should not include the descendant nodes. Any
227 * implementation that wants to provide functionality to flush all nodes
228 * at once should override the method {@link #flush() flush()}.
257 * flush method will be invoked.
402 public void flush() throws BackingStoreException { method in class:AbstractPreferences
409 cc[i].flush();
/dalvik/libcore/support/src/test/java/tests/util/
H A DTestEnvironment.java179 root.flush();
/dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/
H A DExpatPullParser.java770 flush(parser, length);
784 * @param parser the parser to flush to
787 abstract void flush(ExpatParser parser, int length) method in class:ExpatPullParser.Document
926 void flush(ExpatParser parser, int length) method in class:ExpatPullParser.CharDocument
954 void flush(ExpatParser parser, int length) method in class:ExpatPullParser.ByteDocument
/dalvik/libcore-disabled/sound/src/main/java/com/android/internal/sound/sampled/
H A DAndroidClip.java115 public void flush() { method in class:AndroidClip
/dalvik/dx/src/com/android/dx/util/
H A DByteArrayAnnotatedOutput.java510 twoc.flush();
526 twoc.flush();
/dalvik/libcore/icu/src/main/native/
H A DNativeConverter.cpp199 * @param flush boolean that specifies end of source input
201 static jint convertCharToByte(JNIEnv *env, jclass jClass, jlong handle, jcharArray source, jint sourceEnd, jbyteArray target, jint targetEnd, jintArray data, jboolean flush) { argument
220 mySourceLimit,NULL,(UBool) flush, &errorCode);
248 static jint encode(JNIEnv *env, jclass jClass, jlong handle, jcharArray source, jint sourceEnd, jbyteArray target, jint targetEnd, jintArray data, jboolean flush) { argument
250 UErrorCode ec = UErrorCode(convertCharToByte(env, jClass,handle,source,sourceEnd, target,targetEnd,data,flush));
283 * @param flush boolean that specifies end of source input
285 static jint convertByteToChar(JNIEnv *env, jclass jClass, jlong handle, jbyteArray source, jint sourceEnd, jcharArray target, jint targetEnd, jintArray data, jboolean flush) { argument
305 mySourceLimit,NULL,(UBool) flush, &errorCode);
333 static jint decode(JNIEnv *env, jclass jClass, jlong handle, jbyteArray source, jint sourceEnd, jcharArray target, jint targetEnd, jintArray data, jboolean flush) { argument
335 jint ec = convertByteToChar(env, jClass,handle,source,sourceEnd, target,targetEnd,data,flush);
[all...]
/dalvik/libcore/luni/src/main/java/org/apache/harmony/luni/internal/net/www/protocol/http/
H A DHttpURLConnectionImpl.java513 socketOut.flush();
520 @Override public void flush() throws IOException { method in class:HttpURLConnectionImpl.FixedLengthHttpOutputStream
522 socketOut.flush();
669 public synchronized void flush() throws IOException { method in class:HttpURLConnectionImpl.DefaultHttpOutputStream
673 socketOut.flush();
1346 socketOut.flush();
/dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DMemoryHandlerTest.java126 method = "flush",
168 handler.flush();
203 method = "flush",
210 handler.flush();
211 assertEquals(writer.toString(), "flush");
529 public void flush() { method in class:MemoryHandlerTest.MockHandler
530 writer.write("flush");
/dalvik/libcore/support/src/test/java/tests/support/
H A DSupport_TestWebServer.java643 ps.flush();
711 ps.flush();
/dalvik/libcore/x-net/src/test/java/tests/api/javax/net/ssl/
H A DHandshakeCompletedEventTest.java571 ostream.flush();
634 ostream.flush();

Completed in 2411 milliseconds

123456