Searched refs:bsize (Results 1 – 2 of 2) sorted by relevance
163 long bsize = statfs.getBlockSize(); in reportFreeSpace() local166 if (bsize <= 0 || total <= 0) { in reportFreeSpace()168 "Invalid stat: bsize=" + bsize + " avail=" + avail + " total=" + total); in reportFreeSpace()174 proto.write(DiskStatsFreeSpaceProto.AVAILABLE_SPACE_KB, avail * bsize / 1024); in reportFreeSpace()175 proto.write(DiskStatsFreeSpaceProto.TOTAL_SPACE_KB, total * bsize / 1024); in reportFreeSpace()180 pw.print(avail * bsize / 1024); in reportFreeSpace()182 pw.print(total * bsize / 1024); in reportFreeSpace()
395 public ZipInflaterInputStream(InputStream is, Inflater inf, int bsize, ZipEntry entry) { in ZipInflaterInputStream() argument396 super(is, inf, bsize); in ZipInflaterInputStream()