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

1 2

  /external/apache-http/src/org/apache/http/entity/
ByteArrayEntity.java 72 public void writeTo(final OutputStream outstream) throws IOException {
73 if (outstream == null) {
76 outstream.write(this.content);
77 outstream.flush();
EntityTemplate.java 72 public void writeTo(final OutputStream outstream) throws IOException {
73 if (outstream == null) {
76 this.contentproducer.writeTo(outstream);
ContentProducer.java 51 void writeTo(OutputStream outstream) throws IOException;
FileEntity.java 74 public void writeTo(final OutputStream outstream) throws IOException {
75 if (outstream == null) {
83 outstream.write(tmp, 0, l);
85 outstream.flush();
SerializableEntity.java 92 public void writeTo(OutputStream outstream) throws IOException {
93 if (outstream == null) {
98 ObjectOutputStream out = new ObjectOutputStream(outstream);
102 outstream.write(this.objSer);
103 outstream.flush();
BasicHttpEntity.java 122 public void writeTo(final OutputStream outstream) throws IOException {
123 if (outstream == null) {
130 outstream.write(tmp, 0, l);
BufferedHttpEntity.java 103 public void writeTo(final OutputStream outstream) throws IOException {
104 if (outstream == null) {
108 outstream.write(this.buffer);
110 wrappedEntity.writeTo(outstream);
InputStreamEntity.java 76 public void writeTo(final OutputStream outstream) throws IOException {
77 if (outstream == null) {
86 outstream.write(buffer, 0, l);
96 outstream.write(buffer, 0, l);
StringEntity.java 85 public void writeTo(final OutputStream outstream) throws IOException {
86 if (outstream == null) {
89 outstream.write(this.content);
90 outstream.flush();
HttpEntityWrapper.java 99 public void writeTo(OutputStream outstream)
101 wrappedEntity.writeTo(outstream);
  /external/apache-http/src/org/apache/http/
HttpEntity.java 150 * @param outstream the output stream to write entity content to
154 void writeTo(OutputStream outstream) throws IOException;
  /packages/apps/Mms/src/com/android/mms/transaction/
ProgressCallbackEntity.java 49 public void writeTo(final OutputStream outstream) throws IOException {
50 if (outstream == null) {
64 outstream.write(mContent, pos, len);
65 outstream.flush();
  /external/apache-http/src/org/apache/http/impl/io/
AbstractSessionOutputBuffer.java 58 private OutputStream outstream; field in class:AbstractSessionOutputBuffer
66 protected void init(final OutputStream outstream, int buffersize, final HttpParams params) {
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/
EntitySerializer.java 96 OutputStream outstream = doSerialize(outbuffer, message); local
97 entity.writeTo(outstream);
98 outstream.close();
  /external/apache-http/src/org/apache/http/conn/
BasicManagedEntity.java 125 public void writeTo(final OutputStream outstream) throws IOException {
126 super.writeTo(outstream);
  /external/apache-http/src/org/apache/http/impl/conn/
Wire.java 87 public void output(InputStream outstream)
89 if (outstream == null) {
92 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);
  /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);
  /packages/apps/Exchange/src/com/android/exchange/
EasOutboxService.java 137 public void writeTo(OutputStream outstream) throws IOException {
138 writeTo(outstream, true);
143 * @param outstream the output stream to write
148 public void writeTo(OutputStream outstream, boolean withData) throws IOException {
150 if (outstream == null) {
155 Serializer s = new Serializer(outstream);
  /packages/apps/Exchange/src/com/android/exchange/service/
EasOutboxSyncHandler.java 301 public void writeTo(final OutputStream outstream) throws IOException {
302 writeTo(outstream, true);
307 * @param outstream the output stream to write
312 public void writeTo(final OutputStream outstream, final boolean withData)
315 if (outstream == null) {
320 final Serializer s = new Serializer(outstream);
  /frameworks/base/services/java/com/android/server/
PackageManagerBackupAgent.java 406 FileOutputStream outstream = new FileOutputStream(stateFile.getFileDescriptor()); local
407 DataOutputStream out = new DataOutputStream(outstream);
  /external/robolectric/lib/main/
httpcore-4.0.1.jar 
  /external/smack/asmack-master/lib/
httpcore-4.1.4.jar 

Completed in 360 milliseconds

1 2