HomeSort by relevance Sort by last modified time
    Searched refs:outstream (Results 1 - 25 of 80) sorted by null

1 2 3 4

  /external/apache-http/src/org/apache/http/entity/
ByteArrayEntity.java 77 public void writeTo(final OutputStream outstream) throws IOException {
78 if (outstream == null) {
81 outstream.write(this.content);
82 outstream.flush();
EntityTemplate.java 77 public void writeTo(final OutputStream outstream) throws IOException {
78 if (outstream == null) {
81 this.contentproducer.writeTo(outstream);
ContentProducer.java 56 void writeTo(OutputStream outstream) throws IOException;
FileEntity.java 79 public void writeTo(final OutputStream outstream) throws IOException {
80 if (outstream == null) {
88 outstream.write(tmp, 0, l);
90 outstream.flush();
SerializableEntity.java 98 public void writeTo(OutputStream outstream) throws IOException {
99 if (outstream == null) {
104 ObjectOutputStream out = new ObjectOutputStream(outstream);
108 outstream.write(this.objSer);
109 outstream.flush();
BasicHttpEntity.java 127 public void writeTo(final OutputStream outstream) throws IOException {
128 if (outstream == null) {
135 outstream.write(tmp, 0, l);
BufferedHttpEntity.java 108 public void writeTo(final OutputStream outstream) throws IOException {
109 if (outstream == null) {
113 outstream.write(this.buffer);
115 wrappedEntity.writeTo(outstream);
InputStreamEntity.java 81 public void writeTo(final OutputStream outstream) throws IOException {
82 if (outstream == null) {
91 outstream.write(buffer, 0, l);
101 outstream.write(buffer, 0, l);
StringEntity.java 90 public void writeTo(final OutputStream outstream) throws IOException {
91 if (outstream == null) {
94 outstream.write(this.content);
95 outstream.flush();
HttpEntityWrapper.java 104 public void writeTo(OutputStream outstream)
106 wrappedEntity.writeTo(outstream);
  /external/apache-http/src/org/apache/http/
HttpEntity.java 155 * @param outstream the output stream to write entity content to
159 void writeTo(OutputStream outstream) throws IOException;
  /external/apache-http/src/org/apache/http/impl/io/
AbstractSessionOutputBuffer.java 63 private OutputStream outstream; field in class:AbstractSessionOutputBuffer
71 protected void init(final OutputStream outstream, int buffersize, final HttpParams params) {
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/
autotestd_monitor 21 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/
EntitySerializer.java 101 OutputStream outstream = doSerialize(outbuffer, message); local
102 entity.writeTo(outstream);
103 outstream.close();
  /external/apache-http/src/org/apache/http/conn/
BasicManagedEntity.java 130 public void writeTo(final OutputStream outstream) throws IOException {
131 super.writeTo(outstream);
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rjsmin/bench/
jsmin_2_0_9.py 68 def __init__(self, instream=None, outstream=None):
70 self.outs = outstream
72 def minify(self, instream=None, outstream=None):
73 if instream and outstream:
74 self.ins, self.outs = instream, outstream
jsmin.py 71 self.outstream.write(self.theA)
73 self.outstream.write(self.theB)
213 def minify(self, instream, outstream):
215 self.outstream = outstream
  /external/apache-http/src/org/apache/http/impl/conn/
Wire.java 92 public void output(InputStream outstream)
94 if (outstream == null) {
97 wire(">> ", outstream);
  /development/samples/BackupRestore/src/com/example/android/backuprestore/
ExampleAgent.java 182 FileOutputStream outstream = new FileOutputStream(stateFile.getFileDescriptor()); local
183 DataOutputStream out = new DataOutputStream(outstream);
MultiRecordExampleAgent.java 136 FileOutputStream outstream = new FileOutputStream(stateFile.getFileDescriptor()); local
137 DataOutputStream out = new DataOutputStream(outstream);
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
CodeMangler.java 357 PrintStream outstream = null; local
414 outstream = new PrintStream(new FileOutputStream(outfile));
424 outstream.println(headerline);
540 outstream.print("//");
543 outstream.println(line);
561 outstream.println(line);
576 outstream.close();
580 outstream.close();
    [all...]
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
CameraTest.java 163 FileOutputStream outstream = new FileOutputStream(rawoutput); local
164 outstream.write(rawData);
  /frameworks/base/tests/HugeBackup/src/com/android/hugebackup/
HugeAgent.java 194 FileOutputStream outstream = new FileOutputStream(stateFile.getFileDescriptor()); local
195 DataOutputStream out = new DataOutputStream(outstream);
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpmime/4.3.2/
httpmime-4.3.2.jar 
  /external/robolectric/v1/lib/main/
httpcore-4.0.1.jar 

Completed in 412 milliseconds

1 2 3 4