Searched refs:getInputStream (Results 1 - 25 of 64) 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/Dialer/java/com/android/voicemail/impl/mail/
H A DBody.java23 public InputStream getInputStream() throws MessagingException; method in interface:Body
H A DBase64Body.java35 public InputStream getInputStream() throws MessagingException { method in class:Base64Body
H A DMailTransport.java141 mIn = new BufferedInputStream(mSocket.getInputStream(), 1024);
211 mIn = new BufferedInputStream(mSocket.getInputStream(), 1024);
294 public InputStream getInputStream() { method in class:MailTransport
323 InputStream in = getInputStream();
/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
/packages/apps/Dialer/java/com/android/voicemail/impl/mail/internet/
H A DTextBody.java51 public InputStream getInputStream() throws MessagingException { method in class:TextBody
H A DBinaryTempFileBody.java34 * user to write to the temp file. After the write the body is available via getInputStream and
35 * writeTo one time. After writeTo is called, or the InputStream returned from getInputStream is
58 public InputStream getInputStream() throws MessagingException { method in class:BinaryTempFileBody
68 InputStream in = getInputStream();
/packages/services/Car/obd2-lib/src/com/android/car/obd2/connections/
H A DBluetoothConnection.java103 public InputStream getInputStream() { method in class:BluetoothConnection
106 return mSocket.getInputStream();
/packages/apps/Bluetooth/src/com/android/bluetooth/
H A DBluetoothObexTransport.java52 return mSocket.getInputStream();
/packages/apps/Bluetooth/src/com/android/bluetooth/pbapclient/
H A DBluetoothPbapObexTransport.java55 return mSocket.getInputStream();
/packages/apps/DocumentsUI/src/com/android/documentsui/archives/
H A DProxy.java93 mInputStream = mFile.getInputStream(mEntry);
/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/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/network/
H A DBlockingHttpClient.java92 return responseProcessor.onSuccess(mConnection.getInputStream());
/packages/services/Car/tests/obd2_test/src/com/android/car/obd2/test/
H A DMockObd2UnderlyingTransport.java83 public InputStream getInputStream() { method in class:MockObd2UnderlyingTransport
/packages/apps/Gallery/src/com/android/camera/gallery/
H A DUriImage.java53 private InputStream getInputStream() { method in class:UriImage
108 return getInputStream();
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/network/
H A DBlockingHttpClientTests.java106 when(mMockHttpConnection.getInputStream()).thenReturn(new ByteArrayInputStream(response));
122 when(mMockHttpConnection.getInputStream()).thenReturn(new ByteArrayInputStream(response));
/packages/services/Car/obd2-lib/src/com/android/car/obd2/
H A DObd2Connection.java41 InputStream getInputStream(); method in interface:Obd2Connection.UnderlyingTransport
112 InputStream in = Objects.requireNonNull(mConnection.getInputStream());
/packages/experimental/RpcPerformance/src/com/android/rpc_performance/
H A DMiscService.java74 InputStream is = socket.getInputStream();

Completed in 3781 milliseconds

123