Searched refs:bis (Results 1 – 6 of 6) sorted by relevance
173 BufferedInputStream bis; in createBase64Image() local175 bis = new BufferedInputStream(ctx.getAssets().open(EMBEDDED_IMAGE_FILENAME)); in createBase64Image()176 byte[] embeddedImage = new byte[bis.available()]; in createBase64Image()177 bis.read(embeddedImage); in createBase64Image()
226 BufferedInputStream bis = new BufferedInputStream(getAssets().open( in installPkcs12() local228 byte[] keychain = new byte[bis.available()]; in installPkcs12()229 bis.read(keychain); in installPkcs12()
195 BufferedInputStream bis = null; in startPlay()200 bis = new BufferedInputStream(in); in startPlay()202 while (!isCancelled() && (read = bis.read(buffer, 0, buffer.length)) > 0) { in startPlay()212 if (bis != null) { in startPlay()213 bis.close(); in startPlay()
122 ByteArrayInputStream bis = new ByteArrayInputStream(bos.toByteArray()); in load() local124 GLES10.GL_RGB, GLES10.GL_UNSIGNED_SHORT_5_6_5, bis); in load()
229 BufferedInputStream bis = null; in fetchFavicon() local235 bis = new BufferedInputStream(is, 8192); in fetchFavicon()236 return BitmapFactory.decodeStream(bis); in fetchFavicon()
242 BufferedInputStream bis = null; in fetchFavicon() local248 bis = new BufferedInputStream(is, 8192); in fetchFavicon()249 return BitmapFactory.decodeStream(bis); in fetchFavicon()