Searched refs:mInputStream (Results 1 - 7 of 7) sorted by relevance

/packages/apps/Gallery2/tests/src/com/android/photos/data/
H A DMediaCacheTest.java53 public InputStream mInputStream; field in class:MediaCacheTest.ReadyCollector
63 mInputStream = bitmapInputStream;
71 while (mInputStream == null && mOriginalFile == null
77 return mInputStream != null || mOriginalFile != null;
162 assertNull(mReady.mInputStream);
171 assertNotNull(mReady.mInputStream);
173 Bitmap bitmap = BitmapFactory.decodeStream(mReady.mInputStream);
174 mReady.mInputStream.close();
191 assertNotNull(mReady.mInputStream);
193 Bitmap bitmap = BitmapFactory.decodeStream(mReady.mInputStream);
[all...]
/packages/apps/Exchange/exchange2/src/com/android/exchange/
H A DEasResponse.java43 private InputStream mInputStream; field in class:EasResponse
102 if (mInputStream != null || mClosed) {
122 mInputStream = is;
157 if (mInputStream instanceof GZIPInputStream) {
159 mInputStream.close();
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppSendFileInfo.java68 public final FileInputStream mInputStream; field in class:BluetoothOppSendFileInfo
85 mInputStream = inputStream;
93 mInputStream = null;
H A DBluetoothOppUtility.java325 if (info != null && info.mInputStream != null) {
327 info.mInputStream.close();
H A DBluetoothOppObexClientSession.java400 BufferedInputStream a = new BufferedInputStream(fileInfo.mInputStream, 0x4000);
H A DBluetoothOppService.java611 if (sendFileInfo == null || sendFileInfo.mInputStream == null) {
/packages/apps/Gallery2/src/com/android/photos/data/
H A DMediaCache.java142 private InputStream mInputStream; field in class:MediaCache.NotifyImageReady
151 mCallback.imageReady(mInputStream);
157 mInputStream = new FileInputStream(file);
161 mInputStream = new ByteArrayInputStream(bytes);

Completed in 154 milliseconds