Lines Matching defs:in
5 * you may not use this file except in compliance with the License.
10 * Unless required by applicable law or agreed to in writing, software
182 * The main process method, which will be called by the ImageWorker in the AsyncTask background
185 * @param data The data to load the bitmap, in this case, a regular http URL
210 Log.d(TAG, "processBitmap, not found in http cache, downloading...");
270 BufferedInputStream in = null;
275 in = new BufferedInputStream(urlConnection.getInputStream(), IO_BUFFER_SIZE);
279 while ((b = in.read()) != -1) {
284 Log.e(TAG, "Error in downloadBitmap - " + e);
293 if (in != null) {
294 in.close();