Searched refs:bis (Results 1 – 11 of 11) sorted by relevance
80 BufferedInputStream bis = new BufferedInputStream(zipSrc.getInputStream(entry)); in main() local83 convert(bis, zos, targets); in main()85 while (bis.available() > 0) { in main()86 zos.write(bis.read()); in main()89 bis.close(); in main()
79 final BufferedInputStream bis = new BufferedInputStream(is, BUFFER_SIZE); in timeRead_Upstream() local80 final DataInput in = new DataInputStream(bis); in timeRead_Upstream()
102 BufferedInputStream bis = new BufferedInputStream(is); in DownloadFromUrl() local105 while ((current = bis.read()) != -1) { in DownloadFromUrl()
371 final BufferedInputStream bis = new BufferedInputStream(fis); in readFile() local373 reader.read(bis); in readFile()375 IoUtils.closeQuietly(bis); in readFile()
281 BufferedInputStream bis = null; in getRotationFromExifHelper() local287 bis = new BufferedInputStream(is); in getRotationFromExifHelper()288 ei.readExif(bis); in getRotationFromExifHelper()291 bis = new BufferedInputStream(is); in getRotationFromExifHelper()292 ei.readExif(bis); in getRotationFromExifHelper()304 Utils.closeSilently(bis); in getRotationFromExifHelper()
222 ByteArrayInputStream bis = new ByteArrayInputStream(buffer); in checksum() local225 while ((nRead = bis.read(buf)) >= 0) { in checksum()
641 BufferedInputStream bis = new BufferedInputStream(input); in readTextFile() local647 int length = bis.read(data); in readTextFile()661 len = bis.read(data); in readTextFile()678 len = bis.read(data); in readTextFile()684 bis.close(); in readTextFile()
335 final ByteArrayInputStream bis = new ByteArrayInputStream(bos.toByteArray()); in openDocumentThumbnail() local343 Streams.copy(bis, fos); in openDocumentThumbnail()
725 BufferedInputStream bis = new BufferedInputStream(fis)) { in getApkChecksum()731 while ((nread = bis.read(dataBytes)) != -1) { in getApkChecksum()
592 try (BufferedInputStream bis = new BufferedInputStream( in getCurrentWallpaperLocked() argument596 while ((data = bis.read()) != -1) { in getCurrentWallpaperLocked()
2488 ByteArrayInputStream bis = new ByteArrayInputStream(b); in getContactsFromSubscriptionProperty() local2489 ObjectInputStream ois = new ObjectInputStream(bis); in getContactsFromSubscriptionProperty()