Searched refs:outstream (Results 1 - 25 of 32) sorted by relevance

12

/external/apache-http/src/org/apache/http/entity/
H A DByteArrayEntity.java77 public void writeTo(final OutputStream outstream) throws IOException { argument
78 if (outstream == null) {
81 outstream.write(this.content);
82 outstream.flush();
H A DEntityTemplate.java77 public void writeTo(final OutputStream outstream) throws IOException { argument
78 if (outstream == null) {
81 this.contentproducer.writeTo(outstream);
H A DContentProducer.java56 void writeTo(OutputStream outstream) throws IOException; argument
H A DFileEntity.java79 public void writeTo(final OutputStream outstream) throws IOException { argument
80 if (outstream == null) {
88 outstream.write(tmp, 0, l);
90 outstream.flush();
H A DSerializableEntity.java98 public void writeTo(OutputStream outstream) throws IOException { argument
99 if (outstream == null) {
104 ObjectOutputStream out = new ObjectOutputStream(outstream);
108 outstream.write(this.objSer);
109 outstream.flush();
H A DBasicHttpEntity.java127 public void writeTo(final OutputStream outstream) throws IOException { argument
128 if (outstream == null) {
135 outstream.write(tmp, 0, l);
H A DBufferedHttpEntity.java108 public void writeTo(final OutputStream outstream) throws IOException { argument
109 if (outstream == null) {
113 outstream.write(this.buffer);
115 wrappedEntity.writeTo(outstream);
H A DInputStreamEntity.java81 public void writeTo(final OutputStream outstream) throws IOException { argument
82 if (outstream == null) {
91 outstream.write(buffer, 0, l);
101 outstream.write(buffer, 0, l);
H A DStringEntity.java90 public void writeTo(final OutputStream outstream) throws IOException { argument
91 if (outstream == null) {
94 outstream.write(this.content);
95 outstream.flush();
H A DHttpEntityWrapper.java104 public void writeTo(OutputStream outstream) argument
106 wrappedEntity.writeTo(outstream);
/external/apache-http/src/org/apache/http/
H A DHttpEntity.java155 * @param outstream the output stream to write entity content to
159 void writeTo(OutputStream outstream) throws IOException; argument
/external/apache-http/src/org/apache/http/impl/io/
H A DAbstractSessionOutputBuffer.java63 private OutputStream outstream; field in class:AbstractSessionOutputBuffer
71 protected void init(final OutputStream outstream, int buffersize, final HttpParams params) { argument
72 if (outstream == null) {
81 this.outstream = outstream;
92 this.outstream.write(this.buffer.buffer(), 0, len);
100 this.outstream.flush();
114 this.outstream.write(b, off, len);
/external/autotest/client/bin/
H A Dautotestd_monitor21 def launch_tail(filename, outstream, start):
25 if outstream != subprocess.PIPE and outstream.fileno() == 1:
28 return subprocess.Popen(argv, stdout=outstream, stderr=devnull)
/external/apache-http/src/org/apache/http/impl/entity/
H A DEntitySerializer.java101 OutputStream outstream = doSerialize(outbuffer, message);
102 entity.writeTo(outstream);
103 outstream.close();
/external/apache-http/src/org/apache/http/conn/
H A DBasicManagedEntity.java130 public void writeTo(final OutputStream outstream) throws IOException { argument
131 super.writeTo(outstream);
/external/apache-http/src/org/apache/http/impl/conn/
H A DWire.java92 public void output(InputStream outstream) argument
94 if (outstream == null) {
97 wire(">> ", outstream);
/external/chromium-trace/catapult/telemetry/third_party/web-page-replay/third_party/jsmin/
H A D__init__.py68 def __init__(self, instream=None, outstream=None, quote_chars="'\""):
70 self.outs = outstream
73 def minify(self, instream=None, outstream=None):
74 if instream and outstream:
75 self.ins, self.outs = instream, outstream
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
H A DCodeMangler.java359 PrintStream outstream = null;
416 outstream = new PrintStream(new FileOutputStream(outfile));
426 outstream.println(headerline);
542 outstream.print("//");
545 outstream.println(line);
563 outstream.println(line);
578 outstream.close();
582 outstream.close();
/external/robolectric/v1/lib/main/
H A Dhttpcore-4.0.1.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/protocol/ ...
H A Dhttpclient-4.0.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
H A Dant-commons-net.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
H A Dant-junit.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/tools/ org/apache/tools/ant/ ...
/external/curl/include/curl/
H A Dcurl.h216 void *outstream);
/external/google-breakpad/src/third_party/curl/
H A Dcurl.h200 void *outstream);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.apache.commons.httpclient_3.1.0.v201005080502.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...

Completed in 439 milliseconds

12