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

1 2 3 4

  /external/nanohttpd/webserver/src/test/java/fi/iki/elonen/
AbstractTestHttpServer.java 47 InputStream instream = entity.getContent(); local
48 return readContents(instream);
51 protected byte[] readContents(InputStream instream) throws IOException {
57 while ((count = instream.read(buffer)) >= 0) {
62 instream.close();
  /external/apache-http/android/src/com/android/internal/http/multipart/
FilePart.java 221 InputStream instream = source.createInputStream(); local
224 while ((len = instream.read(tmp)) >= 0) {
229 instream.close();
  /external/apache-http/src/org/apache/http/entity/
FileEntity.java 83 InputStream instream = new FileInputStream(this.file); local
87 while ((l = instream.read(tmp)) != -1) {
92 instream.close();
BasicHttpEntity.java 118 * @param instream the stream to return with the next call to
121 public void setContent(final InputStream instream) {
122 this.content = instream;
131 InputStream instream = getContent(); local
134 while ((l = instream.read(tmp)) != -1) {
InputStreamEntity.java 60 public InputStreamEntity(final InputStream instream, long length) {
62 if (instream == null) {
65 this.content = instream;
85 InputStream instream = this.content; local
90 while ((l = instream.read(buffer)) != -1) {
97 l = instream.read(buffer, 0, (int)Math.min(BUFFER_SIZE, remaining));
  /external/apache-http/src/org/apache/http/util/
EntityUtils.java 69 InputStream instream = entity.getContent(); local
70 if (instream == null) {
84 while((l = instream.read(tmp)) != -1) {
88 instream.close();
117 InputStream instream = entity.getContent(); local
118 if (instream == null) {
135 Reader reader = new InputStreamReader(instream, charset);
  /development/samples/BackupRestore/src/com/example/android/backuprestore/
ExampleAgent.java 146 FileInputStream instream = new FileInputStream(oldState.getFileDescriptor()); local
147 DataInputStream in = new DataInputStream(instream);
MultiRecordExampleAgent.java 87 FileInputStream instream = new FileInputStream(oldState.getFileDescriptor()); local
88 DataInputStream in = new DataInputStream(instream);
175 ByteArrayInputStream instream = new ByteArrayInputStream(dataBuf); local
176 DataInputStream in = new DataInputStream(instream);
  /frameworks/base/tests/HugeBackup/src/com/android/hugebackup/
HugeAgent.java 158 FileInputStream instream = new FileInputStream(oldState.getFileDescriptor()); local
159 DataInputStream in = new DataInputStream(instream);
  /external/nanohttpd/nanolets/src/test/java/fi/iki/elonen/router/
TestNanolets.java 300 InputStream instream = entity.getContent(); local
301 return readContents(instream);
304 private byte[] readContents(InputStream instream) throws IOException {
311 while ((count = instream.read(buffer)) >= 0) {
316 instream.close();
  /external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
CodeMangler.java 360 InputStream instream = new FileInputStream(infile); local
362 BufferedReader reader = new BufferedReader(new InputStreamReader(instream));
583 instream.close();
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
AbstractSessionInputBuffer.java 60 private InputStream instream; field in class:AbstractSessionInputBuffer
73 protected void init(final InputStream instream, int buffersize, final HttpParams params) {
74 if (instream == null) {
83 this.instream = instream;
108 l = this.instream.read(this.buffer, off, len);
  /frameworks/base/services/backup/java/com/android/server/backup/
PackageManagerBackupAgent.java 508 FileInputStream instream = new FileInputStream(stateFile.getFileDescriptor()); local
509 BufferedInputStream inbuffer = new BufferedInputStream(instream);
  /prebuilts/tools/common/m2/repository/org/apache/james/apache-mime4j-core/0.7.2/
apache-mime4j-core-0.7.2.jar 
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsBackupAgent.java 360 FileInputStream instream = new FileInputStream(data.getFileDescriptor()); local
361 DataInputStream in = new DataInputStream(instream);
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpcore/4.3.1/
httpcore-4.3.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 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpcore/4.4.4/
httpcore-4.4.4.jar 
  /prebuilts/devtools/tools/lib/
httpcore-4.1.jar 
  /prebuilts/tools/common/http-client/
httpcore-4.1.jar 
  /prebuilts/tools/common/m2/repository/org/apache/httpcomponents/httpcore/4.1/
httpcore-4.1.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.apache.httpcomponents.httpcore_4.1.4.v201203221030.jar 
  /prebuilts/tools/common/offline-m2/org/apache/httpcomponents/httpcore/4.1/
httpcore-4.1.jar 
  /external/robolectric/v1/lib/main/
httpcore-4.0.1.jar 

Completed in 342 milliseconds

1 2 3 4