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

1 2 3 4 5 6 78 91011>>

  /toolchain/binutils/binutils-2.27/zlib/examples/
zpipe.c 38 int ret, flush; local
59 flush = feof(source) ? Z_FINISH : Z_NO_FLUSH;
67 ret = deflate(&strm, flush); /* no bad return value */
78 } while (flush != Z_FINISH);
  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/
AbstractFileSystem.java 48 flush(); method
BlockDevice.java 71 public abstract void flush() throws IOException; method in interface:BlockDevice
FileSystem.java 94 public void flush() throws IOException; method in interface:FileSystem
  /tools/tradefederation/core/src/com/android/tradefed/device/
CollectingOutputReceiver.java 71 public void flush() { method in class:CollectingOutputReceiver
  /dalvik/dexgen/src/com/android/dexgen/util/
TwoColumnOutput.java 76 twoOut.flush();
153 public void flush() { method in class:TwoColumnOutput
  /dalvik/dx/src/com/android/dx/util/
TwoColumnOutput.java 76 twoOut.flush();
153 public void flush() { method in class:TwoColumnOutput
  /external/apache-http/src/org/apache/http/impl/io/
ChunkedOutputStream.java 180 public void flush() throws IOException { method in class:ChunkedOutputStream
182 this.out.flush();
193 this.out.flush();
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
SerializerTraceWriter.java 105 * Flush out the collected characters by sending them to the trace
134 * Flush the internal buffer and flush the Writer
135 * @see java.io.Writer#flush()
137 public void flush() throws java.io.IOException method in class:SerializerTraceWriter
141 m_writer.flush();
148 * Flush the internal buffer and close the Writer
181 /* If we are close to the end of the buffer then flush it.
229 * flush the output buffer and make the buffer bigger to handle.
290 * flush the output buffer and make the buffer bigger to handle
    [all...]
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
ASN1OutputStream.java 155 public void flush() method in class:ASN1OutputStream
158 os.flush();
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
Deprecator.java 99 System.out.flush();
106 System.out.flush();
123 pw.flush();
192 System.out.flush();
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/data/
ExecutionDataWriter.java 82 public void flush() throws IOException { method in class:ExecutionDataWriter
83 out.flush();
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/transport/
Transport.java 134 xw.flush();
137 bos.flush();
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
BlockOutputStream.java 99 public void flush() throws IOException { method in class:BlockOutputStream
100 filterChain.flush();
UncompressedLZMA2OutputStream.java 99 public void flush() throws IOException { method in class:UncompressedLZMA2OutputStream
110 out.flush();
  /external/okhttp/okhttp-android-support/src/main/java/com/squareup/okhttp/
AndroidShimResponseCache.java 104 public void flush() throws IOException { method in class:AndroidShimResponseCache
105 delegate.flush();
  /external/okhttp/okhttp-android-support/src/test/java/com/squareup/okhttp/android/
HttpResponseCache.java 132 public void flush() { method in class:HttpResponseCache
134 shimResponseCache.flush();
  /external/okhttp/okio/okio/src/main/java/okio/
AsyncTimeout.java 164 @Override public void flush() throws IOException { method in class:AsyncTimeout
168 sink.flush();
DeflaterSink.java 27 * <h3>Sync flush</h3>
29 * call to {@link #flush} immediately compresses all currently-buffered data;
33 * <p>This is equivalent to using {@link Deflater} with the sync flush option.
34 * This class does not offer any partial flush mechanism. For best performance,
35 * only call {@link #flush} when application behavior requires it.
113 @Override public void flush() throws IOException { method in class:DeflaterSink
115 sink.flush();
GzipSink.java 28 * <h3>Sync flush</h3>
30 * call to {@link #flush} immediately compresses all currently-buffered data;
34 * <p>This is equivalent to using {@link Deflater} with the sync flush option.
35 * This class does not offer any partial flush mechanism. For best performance,
36 * only call {@link #flush} when application behavior requires it.
73 @Override public void flush() throws IOException { method in class:GzipSink
74 deflaterSink.flush();
  /external/okhttp/okio/okio/src/test/java/okio/
SocketTimeoutTest.java 64 sink.flush();
76 sink.flush();
125 out.flush();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/
FileDeferredOutputStream.java 59 @Override public void flush() throws IOException { method in class:FileDeferredOutputStream
60 output.flush();
  /external/smali/util/src/main/java/org/jf/util/
IndentingWriter.java 154 public void flush() throws IOException { method in class:IndentingWriter
155 writer.flush();
  /frameworks/base/core/java/android/net/http/
HttpResponseCache.java 64 * cache.flush();
240 public void flush() { method in class:HttpResponseCache
242 delegate.flush();
  /frameworks/base/core/java/com/android/internal/util/
LineBreakBufferedWriter.java 88 * Flush the current buffer. This will ignore line breaks.
91 public void flush() { method in class:LineBreakBufferedWriter
94 super.flush();
286 * @param length The number of characters to flush.

Completed in 1085 milliseconds

1 2 3 4 5 6 78 91011>>