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

123

/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/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/prefs/src/main/java/java/util/prefs/
H A DPreferences.java59 * The {@code flush()} and {@code sync()} methods force the back-end to
63 * {@code flush()} or {@code sync()} method returns. Please note that if the JVM
337 public abstract void flush() throws BackingStoreException; method in class:Preferences
822 * necessarily be persisted until the method {@code flush()} is invoked.
911 * flush()} is invoked.
958 * flush()} is invoked.
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/xml/src/main/java/org/kxml2/io/
H A DKXmlSerializer.java173 flush();
481 public void flush() throws IOException { method in class:KXmlSerializer
483 writer.flush();
/dalvik/libcore-disabled/sound/src/main/java/com/android/internal/sound/sampled/
H A DAndroidClip.java115 public void flush() { method in class:AndroidClip
/dalvik/libcore/logging/src/test/java/org/apache/harmony/logging/tests/java/util/logging/
H A DStreamHandlerTest.java433 assertEquals("flush", CallVerificationStack.getInstance()
455 h.flush();
476 assertEquals("flush", CallVerificationStack.getInstance()
522 * Test flush().
526 notes = "Verifies flush() method.",
527 method = "flush",
533 h.flush();
534 assertEquals("flush", CallVerificationStack.getInstance().getCurrentSourceMethod());
540 * Test flush() when having no output stream.
544 notes = "Verifies flush() whe
1244 public void flush() throws IOException { method in class:StreamHandlerTest.MockOutputStream
1278 public void flush() throws IOException { method in class:StreamHandlerTest.MockExceptionOutputStream
[all...]
H A DLogManagerTest.java1441 public void flush() { method in class:LogManagerTest.MockHandler
1442 // System.out.println(this + ":flush");
H A DLoggerTest.java4692 public void flush() { method in class:LoggerTest.MockHandler
4711 public void flush() { method in class:LoggerTest.MockExceptionalHandler
/dalvik/libcore/luni/src/main/java/java/io/
H A DObjectOutputStream.java387 // First flush what is needed (primitive data, etc)
388 flush();
425 * flush} but the flush is not propagated to the target stream.
517 * Writes buffered data to the target stream and calls the {@code flush}
525 public void flush() throws IOException { method in class:ObjectOutputStream
527 output.flush();
673 // First we flush what we have
918 drain(); // flush primitive types in the annotation
1697 // First we need to flush primitiv
[all...]
/dalvik/libcore/prefs/src/test/java/org/apache/harmony/prefs/tests/java/util/prefs/
H A DPreferencesTest.java428 method = "flush",
622 p.flush();
1848 public void flush() throws BackingStoreException { method in class:PreferencesTest.MockPreferences
/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/luni/src/test/java/tests/api/java/io/
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/luni/src/test/java/tests/api/java/util/
H A DFormatterTest.java154 public void flush() throws IOException { method in class:FormatterTest.MockDestination
861 * @tests java.util.Formatter#flush()
866 method = "flush",
875 f.flush();
884 f.flush();
940 f.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/xml/src/main/java/org/apache/xml/serializer/
H A DToUnknownStream.java213 flush();
277 flush();
291 flush();
305 flush();
336 flush();
391 * for the up coming element, so flush the old element
394 flush();
469 * But we have the old element pending, so flush it out,
472 flush();
507 // if there are attributes, then lets make the flush()
1204 private void flush() method in class:ToUnknownStream
[all...]
H A DToStream.java141 /** True if we control the buffer, and we should flush the output on endDocument. */
249 ((WriterToUTF8Buffered) writer).flush();
256 writer.flush();
263 writer.flush();
2298 // the "true" causes the flush of any open tags
2975 m_writer.flush();
3144 // flush out the "<elemName" if not already flushed
3145 m_writer.flush();
3206 * @see java.io.Writer#flush()
3208 public void flush() throw method in class:ToStream.WritertoStringBuffer
[all...]
/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/java/util/
H A DFormatter.java924 * then the method {@code flush()} will be called on that destination.
929 public void flush() { method in class:Formatter
933 ((Flushable) out).flush();

Completed in 397 milliseconds

123