Lines Matching refs:bufferedInput
130 BufferedInputStream bufferedInput = null;
134 bufferedInput = new BufferedInputStream(context.getContentResolver()
138 bufferedInput = createInputStreamFromRemoteUrl(uri, connectionManager);
142 if (bufferedInput != null) {
143 options.inSampleSize = computeSampleSize(bufferedInput, maxResolutionX, maxResolutionY);
149 bufferedInput = null;
153 bufferedInput = new BufferedInputStream(context.getContentResolver()
157 bufferedInput = createInputStreamFromRemoteUrl(uri, connectionManager);
160 // Decode bufferedInput to a bitmap.
161 if (bufferedInput != null) {
175 bitmap = BitmapFactory.decodeStream(bufferedInput, null, options);