HomeSort by relevance Sort by last modified time
    Searched defs:out (Results 226 - 250 of 4549) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/impl/io/
ChunkedOutputStream.java 58 private final SessionOutputBuffer out; field in class:ChunkedOutputStream
72 * @param out the session output buffer to wrap
76 public ChunkedOutputStream(final SessionOutputBuffer out, int bufferSize)
80 this.out = out;
87 * @param out the output buffer to wrap
90 public ChunkedOutputStream(final SessionOutputBuffer out)
92 this(out, 2048);
97 * Writes the cache out onto the underlying stream
102 this.out.writeLine(Integer.toHexString(this.cachePosition))
    [all...]
  /external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/
RandomAccessFileInputStreamFactoryTest.java 56 FileOutputStream out = new FileOutputStream(tempFile); local
57 out.write(testData);
58 out.flush();
59 out.close();
  /external/guava/guava-tests/test/com/google/common/io/
ByteSinkTest.java 47 OutputStream out = sink.openBufferedStream(); local
51 out.write(new byte[] {1, 2, 3, 4});
52 out.close();
IoTestCase.java 166 OutputStream out = new FileOutputStream(file); local
170 out.write(buf, 0, read);
173 out.close();
  /external/jarjar/src/main/com/tonicsystems/jarjar/util/
IoUtil.java 31 public static void pipe(InputStream is, OutputStream out, byte[] buf) throws IOException {
36 out.write(buf, 0, amt);
43 OutputStream out = new FileOutputStream(to); local
45 pipe(in, out, buf);
47 out.close();
StandaloneJarProcessor.java 33 JarOutputStream out = new JarOutputStream(new FileOutputStream(tmpTo)); local
50 out.putNextEntry(entry);
51 out.write(struct.data);
63 out.close();
  /external/jetty/src/java/org/eclipse/jetty/io/
UncheckedPrintWriter.java 53 public UncheckedPrintWriter(Writer out)
55 this(out,false);
62 * @param out
68 public UncheckedPrintWriter(Writer out, boolean autoFlush)
70 super(out,autoFlush);
82 * @param out
87 public UncheckedPrintWriter(OutputStream out)
89 this(out,false);
98 * @param out
106 public UncheckedPrintWriter(OutputStream out, boolean autoFlush
    [all...]