HomeSort by relevance Sort by last modified time
    Searched defs:flush (Results 1 - 25 of 732) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/io/
Flushable.java 32 void flush() throws IOException; method in interface:Flushable
ObjectOutput.java 43 public void flush() throws IOException; method in interface:ObjectOutput
FilterOutputStream.java 61 flush(); method
84 * if an error occurs attempting to flush this stream.
87 public void flush() throws IOException { method in class:FilterOutputStream
88 out.flush();
FilterWriter.java 67 * if an error occurs attempting to flush this writer.
70 public void flush() throws IOException { method in class:FilterWriter
72 out.flush();
OutputStream.java 74 public void flush() throws IOException { method in class:OutputStream
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
IShellOutputReceiver.java 34 * canceled). This allows the receiver to terminate and flush whatever
37 public void flush(); method in interface:IShellOutputReceiver
  /sdk/emulator/opengl/system/OpenglSystemCommon/
HostConnection.h 37 void flush() { function in class:HostConnection
39 m_stream->flush();
  /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/proguard/src/proguard/gui/
TextAreaOutputStream.java 48 public void flush() throws IOException method in class:TextAreaOutputStream
50 super.flush();
  /libcore/luni/src/main/java/javax/crypto/
CipherOutputStream.java 108 public void flush() throws IOException { method in class:CipherOutputStream
109 out.flush();
133 out.flush();
  /libcore/luni/src/main/java/libcore/net/http/
FixedLengthOutputStream.java 45 @Override public void flush() throws IOException { method in class:FixedLengthOutputStream
49 socketOut.flush();
  /packages/apps/Email/src/com/android/email/mail/transport/
EOLConvertingOutputStream.java 42 public void flush() throws IOException { method in class:EOLConvertingOutputStream
47 super.flush();
  /packages/apps/Email/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();
NullWriter.java 86 /** @see java.io.Writer#flush() */
87 public void flush() { method in class:NullWriter
  /external/apache-http/src/org/apache/http/
HttpClientConnection.java 110 void flush() throws IOException; method in interface:HttpClientConnection
HttpServerConnection.java 93 void flush() method in interface:HttpServerConnection
  /external/apache-http/src/org/apache/http/io/
SessionOutputBuffer.java 59 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/srec/srec/Semproc/include/
SR_SemanticProcessor.h 73 * Flush the internals of the semantic processor
77 ESR_ReturnCode(*flush)(struct SR_SemanticProcessor_t* self); member in struct:SR_SemanticProcessor_t
104 * Flush the internals of the Semantic Processor
  /external/webkit/Tools/Scripts/webkitpy/common/
array_stream.py 61 def flush(self): member in class:ArrayStream
62 """Flush the stream (a no-op implemented for compatibility)."""
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
metered_stream.py 95 def flush(self): member in class:MeteredStream
96 """Flush any buffered output."""
97 self._stream.flush()
  /libcore/luni/src/main/java/java/util/logging/
ConsoleHandler.java 62 * Logs a record if necessary. A flush operation will be done.
70 super.flush();
StreamHandler.java 190 // flush first before set new encoding
191 this.flush();
225 this.writer.flush();
240 * this handler is written out. A flush operation and a subsequent close
254 public void flush() { method in class:StreamHandler
258 this.writer.flush();
260 this.os.flush();

Completed in 769 milliseconds

1 2 3 4 5 6 7 8 91011>>