Home
last modified time | relevance | path

Searched refs:bis (Results 1 – 2 of 2) sorted by relevance

/developers/samples/android/wearable/wear/WearSpeakerSample/wear/src/main/java/com/example/android/wearable/speaker/
DSoundRecorder.java181 BufferedInputStream bis = null; in doInBackground() local
186 bis = new BufferedInputStream(in); in doInBackground()
188 while (!isCancelled() && (read = bis.read(buffer, 0, buffer.length)) > 0) { in doInBackground()
198 if (bis != null) { in doInBackground()
199 bis.close(); in doInBackground()
/developers/samples/android/system/AppShortcuts/app/src/main/java/com/example/android/appshortcuts/
DShortcutHelper.java229 BufferedInputStream bis = null; in fetchFavicon() local
235 bis = new BufferedInputStream(is, 8192); in fetchFavicon()
236 return BitmapFactory.decodeStream(bis); in fetchFavicon()