Searched refs:getInputStream (Results 1 - 25 of 52) sorted by relevance

123

/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
H A DBinaryBody.java41 InputStream getInputStream() throws IOException; method in interface:BinaryBody
H A DTempFileBinaryBody.java79 * @see org.apache.james.mime4j.message.BinaryBody#getInputStream()
81 public InputStream getInputStream() throws IOException { method in class:TempFileBinaryBody
82 return tempFile.getInputStream();
89 IOUtils.copy(getInputStream(),out);
H A DMemoryBinaryBody.java80 * @see org.apache.james.mime4j.message.BinaryBody#getInputStream()
82 public InputStream getInputStream() throws IOException { method in class:MemoryBinaryBody
90 IOUtils.copy(getInputStream(),out);
H A DTempFileTextBody.java104 return new InputStreamReader(tempFile.getInputStream());
107 return new InputStreamReader(tempFile.getInputStream(), javaCharset);
115 IOUtils.copy(tempFile.getInputStream(), out);
/packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/
H A DBody.java24 public InputStream getInputStream() throws MessagingException; method in interface:Body
H A DBase64Body.java38 public InputStream getInputStream() throws MessagingException { method in class:Base64Body
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/util/
H A DTempFile.java41 InputStream getInputStream() throws IOException; method in interface:TempFile
/packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
H A DBinaryTempFileBody.java38 * the user to write to the temp file. After the write the body is available via getInputStream
40 * getInputStream is closed the file is deleted and the Body should be considered disposed of.
61 public InputStream getInputStream() throws MessagingException { method in class:BinaryTempFileBody
72 InputStream in = getInputStream();
H A DTextBody.java55 public InputStream getInputStream() throws MessagingException { method in class:TextBody
H A DMimeMultipart.java106 public InputStream getInputStream() throws MessagingException { method in class:MimeMultipart
/packages/apps/Bluetooth/src/com/android/bluetooth/map/
H A DBluetoothMapRfcommTransport.java49 return mSocket.getInputStream();
H A DBluetoothMnsRfcommTransport.java49 return mSocket.getInputStream();
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppRfcommTransport.java67 return mSocket.getInputStream();
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapRfcommTransport.java66 return mSocket.getInputStream();
/packages/apps/Exchange/src/com/android/exchange/eas/
H A DEasSettings.java70 return new SettingsParser(response.getInputStream()).parse()
H A DEasSearchGal.java68 InputStream is = response.getInputStream();
H A DEasFolderSync.java171 response.getInputStream(), mAccount, mStatusOnly).parse();
H A DEasSyncBase.java108 mMailbox, response.getInputStream());
/packages/apps/Email/provider_src/com/android/email/mail/transport/
H A DMailTransport.java135 mIn = new BufferedInputStream(mSocket.getInputStream(), 1024);
170 mIn = new BufferedInputStream(mSocket.getInputStream(), 1024);
279 public InputStream getInputStream() { method in class:MailTransport
312 InputStream in = getInputStream();
/packages/apps/Gallery/src/com/android/camera/gallery/
H A DUriImage.java53 private InputStream getInputStream() { method in class:UriImage
108 return getInputStream();
/packages/experimental/RpcPerformance/src/com/android/rpc_performance/
H A DMiscService.java74 InputStream is = socket.getInputStream();
/packages/apps/Camera2/src/com/android/camera/ui/
H A DZoomView.java67 InputStream isForDimensions = getInputStream();
139 InputStream is = getInputStream();
271 private InputStream getInputStream() { method in class:ZoomView
/packages/apps/Camera2/src/com/android/camera/tinyplanet/
H A DTinyPlanetFragment.java262 InputStream is = getInputStream(sourceImageUri);
269 is = getInputStream(sourceImageUri);
433 private InputStream getInputStream(Uri uri) { method in class:TinyPlanetFragment
/packages/apps/Exchange/src/com/android/exchange/
H A DEasResponse.java142 public InputStream getInputStream() { method in class:EasResponse
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
H A DJavaNetHttpHelper.java159 new InputStreamReader(c.getInputStream(), DEFAULT_CHARSET));

Completed in 447 milliseconds

123