Searched refs:bsize (Results 1 – 2 of 2) sorted by relevance
153 long bsize = statfs.getBlockSize(); in reportFreeSpace() local156 if (bsize <= 0 || total <= 0) { in reportFreeSpace()158 "Invalid stat: bsize=" + bsize + " avail=" + avail + " total=" + total); in reportFreeSpace()164 proto.write(DiskStatsFreeSpaceProto.AVAILABLE_SPACE, avail * bsize / 1024); in reportFreeSpace()165 proto.write(DiskStatsFreeSpaceProto.TOTAL_SPACE, total * bsize / 1024); in reportFreeSpace()170 pw.print(avail * bsize / 1024); in reportFreeSpace()172 pw.print(total * bsize / 1024); in reportFreeSpace()
394 public ZipInflaterInputStream(InputStream is, Inflater inf, int bsize, ZipEntry entry) { in ZipInflaterInputStream() argument395 super(is, inf, bsize); in ZipInflaterInputStream()