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

/external/apache-http/src/org/apache/http/entity/
H A DByteArrayEntity.java72 public void writeTo(final OutputStream outstream) throws IOException { argument
73 if (outstream == null) {
76 outstream.write(this.content);
77 outstream.flush();
H A DEntityTemplate.java72 public void writeTo(final OutputStream outstream) throws IOException { argument
73 if (outstream == null) {
76 this.contentproducer.writeTo(outstream);
H A DContentProducer.java51 void writeTo(OutputStream outstream) throws IOException; argument
H A DFileEntity.java74 public void writeTo(final OutputStream outstream) throws IOException { argument
75 if (outstream == null) {
83 outstream.write(tmp, 0, l);
85 outstream.flush();
H A DSerializableEntity.java92 public void writeTo(OutputStream outstream) throws IOException { argument
93 if (outstream == null) {
98 ObjectOutputStream out = new ObjectOutputStream(outstream);
102 outstream.write(this.objSer);
103 outstream.flush();
H A DBasicHttpEntity.java122 public void writeTo(final OutputStream outstream) throws IOException { argument
123 if (outstream == null) {
130 outstream.write(tmp, 0, l);
H A DBufferedHttpEntity.java103 public void writeTo(final OutputStream outstream) throws IOException { argument
104 if (outstream == null) {
108 outstream.write(this.buffer);
110 wrappedEntity.writeTo(outstream);
H A DInputStreamEntity.java76 public void writeTo(final OutputStream outstream) throws IOException { argument
77 if (outstream == null) {
86 outstream.write(buffer, 0, l);
96 outstream.write(buffer, 0, l);
H A DStringEntity.java85 public void writeTo(final OutputStream outstream) throws IOException { argument
86 if (outstream == null) {
89 outstream.write(this.content);
90 outstream.flush();
H A DHttpEntityWrapper.java99 public void writeTo(OutputStream outstream) argument
101 wrappedEntity.writeTo(outstream);
/external/apache-http/src/org/apache/http/
H A DHttpEntity.java150 * @param outstream the output stream to write entity content to
154 void writeTo(OutputStream outstream) throws IOException; argument
/external/apache-http/src/org/apache/http/impl/io/
H A DAbstractSessionOutputBuffer.java58 private OutputStream outstream; field in class:AbstractSessionOutputBuffer
66 protected void init(final OutputStream outstream, int buffersize, final HttpParams params) { argument
67 if (outstream == null) {
76 this.outstream = outstream;
87 this.outstream.write(this.buffer.buffer(), 0, len);
95 this.outstream.flush();
109 this.outstream.write(b, off, len);
/external/apache-http/src/org/apache/http/impl/entity/
H A DEntitySerializer.java96 OutputStream outstream = doSerialize(outbuffer, message);
97 entity.writeTo(outstream);
98 outstream.close();
/external/apache-http/src/org/apache/http/conn/
H A DBasicManagedEntity.java125 public void writeTo(final OutputStream outstream) throws IOException { argument
126 super.writeTo(outstream);
/external/apache-http/src/org/apache/http/impl/conn/
H A DWire.java87 public void output(InputStream outstream) argument
89 if (outstream == null) {
92 wire(">> ", outstream);
/external/robolectric/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/smack/asmack-master/lib/
H A Dhttpcore-4.1.4.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/impl/ ...
H A Dhttpclient-4.1.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/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 174 milliseconds