HomeSort by relevance Sort by last modified time
    Searched defs:flush (Results 26 - 50 of 2652) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/guava/guava/src/com/google/common/io/
Flushables.java 40 * Flush a {@link Flushable}, with control over whether an
48 * thrown by the {@code flush} method
50 * {@link Flushable#flush} throws an {@code IOException}.
53 public static void flush(Flushable flushable, boolean swallowIOException) method in class:Flushables
56 flushable.flush();
68 * Equivalent to calling {@code flush(flushable, true)}, but with no
75 flush(flushable, true); method
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
CountingOutputStream.java 43 public void flush() throws IOException { method in class:CountingOutputStream
44 out.flush();
FinishableWrapperOutputStream.java 58 * Calls {@link java.io.OutputStream#flush() out.flush()}.
60 public void flush() throws IOException { method in class:FinishableWrapperOutputStream
61 out.flush();
  /external/okhttp/okio/okio/src/main/java/okio/
ForwardingSink.java 38 @Override public void flush() throws IOException { method in class:ForwardingSink
39 delegate.flush();
  /external/proguard/src/proguard/gui/
TextAreaOutputStream.java 47 public void flush() throws IOException method in class:TextAreaOutputStream
49 super.flush();
  /frameworks/base/core/java/android/bluetooth/
BluetoothOutputStream.java 81 * for flush implementation. Use it to ensure the writing data afterwards will
87 public void flush() throws IOException { method in class:BluetoothOutputStream
88 mSocket.flush();
  /libcore/ojluni/src/main/java/java/io/
BufferedOutputStream.java 79 /** Flush the internal buffer */
107 * buffer, however, then this method will flush the buffer and write the
119 flush the output buffer and then write the data directly.
139 public synchronized void flush() throws IOException { method in class:BufferedOutputStream
141 out.flush();
FilterOutputStream.java 133 * The <code>flush</code> method of <code>FilterOutputStream</code>
134 * calls the <code>flush</code> method of its underlying output stream.
139 public void flush() throws IOException { method in class:FilterOutputStream
140 out.flush();
148 * calls its <code>flush</code> method, and then calls the
152 * @see java.io.FilterOutputStream#flush()
158 flush(); method
FilterWriter.java 99 public void flush() throws IOException { method in class:FilterWriter
100 out.flush();
  /libcore/ojluni/src/main/java/javax/crypto/
CipherOutputStream.java 179 public void flush() throws IOException { method in class:CipherOutputStream
184 output.flush();
194 * <code>flush</code> method of this output stream.
217 flush(); method
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/utility/
EOLConvertingOutputStream.java 41 public void flush() throws IOException { method in class:EOLConvertingOutputStream
46 super.flush();
  /packages/apps/UnifiedEmail/src/org/apache/commons/io/output/
ProxyOutputStream.java 74 * Invokes the delegate's <code>flush()</code> method.
77 public void flush() throws IOException { method in class:ProxyOutputStream
78 out.flush();
ProxyWriter.java 96 * Invokes the delegate's <code>flush()</code> method.
99 public void flush() throws IOException { method in class:ProxyWriter
100 out.flush();
TeeOutputStream.java 80 public void flush() throws IOException { method in class:TeeOutputStream
81 super.flush();
82 this.branch.flush();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/
TeeOutputStream.java 49 public void flush() method in class:TeeOutputStream
52 this.output1.flush();
53 this.output2.flush();
SimpleOutputStream.java 12 public void flush() method in class:SimpleOutputStream
  /external/apache-http/src/org/apache/http/
HttpClientConnection.java 115 void flush() throws IOException; method in interface:HttpClientConnection
HttpServerConnection.java 98 void flush() method in interface:HttpServerConnection
  /external/apache-http/src/org/apache/http/io/
SessionOutputBuffer.java 64 void flush() throws IOException; method in interface:SessionOutputBuffer
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
WriterChain.java 38 * flush()
64 public void flush() throws IOException; method in interface:WriterChain
  /external/gemmlowp/meta/
single_thread_transform.h 47 << std::flush; member in class:gemmlowp::meta::internal::Dispatch1D::std
65 << std::flush; member in class:gemmlowp::meta::internal::Dispatch1D::std
72 << std::flush; member in class:gemmlowp::meta::internal::Dispatch1D::std
  /external/icu/icu4c/source/common/
unistrappender.h 67 inline void flush() { function in class:UnicodeStringAppender
75 * flush the buffer when we go out of scope.
78 flush();
  /external/skia/resources/lua/
slides_utils.lua 62 function flush(slides, block) function
77 block = flush(slides, block)
98 flush(slides, block)
  /external/skqp/platform_tools/android/apps/skqp/src/main/assets/resources/lua/
slides_utils.lua 62 function flush(slides, block) function
77 block = flush(slides, block)
98 flush(slides, block)
  /external/skqp/resources/lua/
slides_utils.lua 62 function flush(slides, block) function
77 block = flush(slides, block)
98 flush(slides, block)

Completed in 3198 milliseconds

12 3 4 5 6 7 8 91011>>