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

123

/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/prefs/
H A DPreferencesTest.java277 public void flush() throws BackingStoreException { method in class:PreferencesTest.MockPreferences
/libcore/ojluni/src/main/java/java/util/prefs/
H A DAbstractPreferences.java75 * a subsequent call to {@link Preferences#flush()} or
82 * of <tt>flush()</tt> and <tt>sync</tt> should return <tt>false</tt>, as
1141 * <tt>flush</tt> method is invoked on this node (or an ancestor).
1256 * guaranteed to be persistent until the <tt>flush</tt> method is
1293 * @see #flush()
1334 * Implements the <tt>flush</tt> method as per the specification in
1335 * {@link Preferences#flush()}.
1353 * @see #flush()
1355 public void flush() throws BackingStoreException { method in class:AbstractPreferences
1380 * flush th
[all...]
H A DFileSystemPreferences.java45 * (The file lock is obtained only for sync(), flush() and removeNode().)
422 // Add shutdown hook to flush cached prefs on normal termination
444 userRt.flush();
446 getLogger().warning("Couldn't flush user prefs: " + e);
451 systemRt.flush();
453 getLogger().warning("Couldn't flush system prefs: " + e);
481 // These 2 things guarantee node will get wrtten at next flush/sync
514 // These 2 things guarantee node will get wrtten at next flush/sync
811 public void flush() throws BackingStoreException { method in class:FileSystemPreferences
/libcore/xml/src/main/java/org/kxml2/io/
H A DKXmlSerializer.java81 writer.flush();
203 flush();
501 public void flush() throws IOException { method in class:KXmlSerializer
/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/luni/src/test/java/libcore/java/util/prefs/
H A DOldPreferencesTest.java82 p.flush();
989 public void flush() throws BackingStoreException { method in class:OldPreferencesTest.MockPreferences
/libcore/luni/src/test/java/libcore/xml/
H A DXmlPullParserFactoryTest.java224 public void flush() throws IOException { method in class:XmlPullParserFactoryTest.XmlSerializerStub
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/
H A DFormatterTest.java136 public void flush() throws IOException { method in class:FormatterTest.MockDestination
648 * java.util.Formatter#flush()
656 f.flush();
665 f.flush();
703 f.flush();
/libcore/ojluni/src/main/java/java/io/
H A DObjectOutputStream.java219 * underlying stream; callers may wish to flush the stream immediately to
728 * Flushes the stream. This will write any buffered output bytes and flush
733 public void flush() throws IOException { method in class:ObjectOutputStream
734 bout.flush();
738 * Drain any buffered data in ObjectOutputStream. Similar to flush but
739 * does not propagate the flush to the underlying stream.
755 flush();
1900 public void flush() throws IOException { method in class:ObjectOutputStream.BlockDataOutputStream
1902 out.flush();
1906 flush();
[all...]
/libcore/ojluni/src/main/java/java/util/
H A DFormatter.java2363 * java.io.Flushable} interface, its {@code flush} method will be invoked.
2372 public void flush() { method in class:Formatter
2376 ((Flushable)a).flush();

Completed in 415 milliseconds

123