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

1 2 3

  /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/entity/
FileEntity.java 79 public void writeTo(final OutputStream outstream) throws IOException {
80 if (outstream == null) {
88 outstream.write(tmp, 0, l);
90 outstream.flush();
ByteArrayEntity.java 77 public void writeTo(final OutputStream outstream) throws IOException {
78 if (outstream == null) {
81 outstream.write(this.content);
82 outstream.flush();
StringEntity.java 90 public void writeTo(final OutputStream outstream) throws IOException {
91 if (outstream == null) {
94 outstream.write(this.content);
95 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);
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);
  /frameworks/base/services/backup/java/com/android/server/backup/utils/
FullBackupUtils.java 116 FileOutputStream outstream = new FileOutputStream(manifestFile); local
117 outstream.write(builder.toString().getBytes());
118 outstream.close();
  /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);
  /cts/hostsidetests/backup/FullBackupOnly/src/
FullBackupOnlyBackupAgent.java 96 FileOutputStream outstream = new FileOutputStream(newState.getFileDescriptor()); local
97 DataOutputStream out = new DataOutputStream(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/tests/HugeBackup/src/com/android/hugebackup/
HugeAgent.java 194 FileOutputStream outstream = new FileOutputStream(stateFile.getFileDescriptor()); local
195 DataOutputStream out = new DataOutputStream(outstream);
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
CodeMangler.java 359 PrintStream outstream = null; local
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();
    [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/services/backup/java/com/android/server/backup/
PackageManagerBackupAgent.java 584 FileOutputStream outstream = new FileOutputStream(stateFile.getFileDescriptor()); local
585 BufferedOutputStream outbuf = new BufferedOutputStream(outstream);
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpcore/4.3.1/
httpcore-4.3.1.jar 
  /external/robolectric/v1/lib/main/
httpcore-4.0.1.jar 
  /prebuilts/devtools/tools/lib/
httpcore-4.1.jar 
  /prebuilts/misc/common/robolectric/lib/
httpcore-4.0.1.jar 
  /prebuilts/tools/common/http-client/
httpcore-4.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpcore/4.0.1/
httpcore-4.0.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpcore/4.1/
httpcore-4.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpcore/4.2.1/
httpcore-4.2.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpcore/4.2.5/
httpcore-4.2.5.jar 

Completed in 148 milliseconds

1 2 3