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

1 2

  /external/apache-http/src/org/apache/http/entity/
BasicHttpEntity.java 113 * @param instream the stream to return with the next call to
116 public void setContent(final InputStream instream) {
117 this.content = instream;
126 InputStream instream = getContent(); local
129 while ((l = instream.read(tmp)) != -1) {
InputStreamEntity.java 55 public InputStreamEntity(final InputStream instream, long length) {
57 if (instream == null) {
60 this.content = instream;
80 InputStream instream = this.content; local
85 while ((l = instream.read(buffer)) != -1) {
92 l = instream.read(buffer, 0, (int)Math.min(BUFFER_SIZE, remaining));
FileEntity.java 78 InputStream instream = new FileInputStream(this.file); local
82 while ((l = instream.read(tmp)) != -1) {
87 instream.close();
  /external/apache-http/src/org/apache/http/util/
EntityUtils.java 64 InputStream instream = entity.getContent(); local
65 if (instream == null) {
79 while((l = instream.read(tmp)) != -1) {
83 instream.close();
112 InputStream instream = entity.getContent(); local
113 if (instream == null) {
130 Reader reader = new InputStreamReader(instream, charset);
  /external/apache-http/src/org/apache/http/impl/conn/
Wire.java 53 private void wire(String header, InputStream instream)
57 while ((ch = instream.read()) != -1) {
95 public void input(InputStream instream)
97 if (instream == null) {
100 wire("<< ", instream);
  /frameworks/base/core/java/com/android/internal/http/multipart/
FilePart.java 221 InputStream instream = source.createInputStream(); local
224 while ((len = instream.read(tmp)) >= 0) {
229 instream.close();
  /development/samples/BackupRestore/src/com/example/android/backuprestore/
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);
ExampleAgent.java 146 FileInputStream instream = new FileInputStream(oldState.getFileDescriptor()); local
147 DataInputStream in = new DataInputStream(instream);
  /external/apache-http/src/org/apache/http/impl/io/
AbstractSessionInputBuffer.java 55 private InputStream instream; field in class:AbstractSessionInputBuffer
68 protected void init(final InputStream instream, int buffersize, final HttpParams params) {
69 if (instream == null) {
78 this.instream = instream;
103 l = this.instream.read(this.buffer, off, len);
  /frameworks/base/tests/HugeBackup/src/com/android/hugebackup/
HugeAgent.java 158 FileInputStream instream = new FileInputStream(oldState.getFileDescriptor()); local
159 DataInputStream in = new DataInputStream(instream);
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
EasOutboxService.java 101 public SendMailEntity(Context context, FileInputStream instream, long length, int tag,
103 super(instream, length);
105 mFileStream = instream;
  /frameworks/base/services/java/com/android/server/
PackageManagerBackupAgent.java 373 FileInputStream instream = new FileInputStream(stateFile.getFileDescriptor()); local
374 DataInputStream in = new DataInputStream(instream);
BackupManagerService.java     [all...]
  /external/antlr/antlr-3.4/tool/src/main/resources/org/antlr/codegen/templates/C/
C.stg 752 ANTLR3_API p<name> <name>New (<inputType()> instream<recognizer.grammar.delegators:{g|, p<g.recognizerName> <g:delegateName()>}>);
753 ANTLR3_API p<name> <name>NewSSD (<inputType()> instream, pANTLR3_RECOGNIZER_SHARED_STATE state<recognizer.grammar.delegators:{g|, p<g.recognizerName> <g:delegateName()>}>);
    [all...]
AST.stg 44 ADAPTOR = ANTLR3_TREE_ADAPTORNew(instream->tstream->tokenSource->strFactory);<\n>
  /prebuilts/tools/common/http-client/
httpcore-4.1.jar 
httpclient-4.1.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 
ant.jar 
  /frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
SettingsBackupAgent.java 369 FileInputStream instream = new FileInputStream(data.getFileDescriptor()); local
370 DataInputStream in = new DataInputStream(instream);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.httpclient_3.1.0.v201005080502.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/13/
android.jar 

Completed in 278 milliseconds

1 2