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

1 2 3

  /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);
  /frameworks/base/core/java/com/android/internal/http/multipart/
FilePart.java 226 InputStream instream = source.createInputStream(); local
229 while ((len = instream.read(tmp)) >= 0) {
234 instream.close();
  /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/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 521 FileInputStream instream = new FileInputStream(stateFile.getFileDescriptor()); local
522 BufferedInputStream inbuffer = new BufferedInputStream(instream);
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsBackupAgent.java 572 FileInputStream instream = new FileInputStream(data.getFileDescriptor()); local
573 DataInputStream in = new DataInputStream(instream);
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/testlibs/
httpcore-4.1.jar 
httpclient-4.1.1.jar 
  /external/smack/asmack-master/lib/
httpcore-4.1.4.jar 
  /prebuilts/devtools/tools/lib/
httpcore-4.1.jar 
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.apache.httpcomponents.httpcore_4.1.4.v201203221030.jar 
org.apache.httpcomponents.httpclient_4.1.3.v201209201135.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 
org.apache.httpcomponents.httpclient_4.1.3.v201209201135.jar 
  /external/robolectric/lib/main/
httpcore-4.0.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant-commons-net.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.httpclient_3.1.0.v201005080502.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
wagon-http-2.6-shaded.jar 

Completed in 338 milliseconds

1 2 3