Home
last modified time | relevance | path

Searched refs:getBytesPerSector (Results 1 – 5 of 5) sorted by relevance

/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DBootSector.java225 return (getSectorCount() * getBytesPerSector()) - in getDataSize()
273 public int getBytesPerSector() { in getBytesPerSector() method in BootSector
283 if (v == getBytesPerSector()) return; in setBytesPerSector()
307 return this.getSectorsPerCluster() * this.getBytesPerSector(); in getBytesPerCluster()
499 res.append(getBytesPerSector()); in toString()
DFatUtils.java42 long sectSize = bs.getBytesPerSector(); in getFatOffset()
62 long sectSize = bs.getBytesPerSector(); in getRootDirOffset()
DFat.java116 if (bs.getBytesPerSector() <= 0) throw new IOException( in Fat()
117 "boot sector says there are " + bs.getBytesPerSector() + in Fat()
121 this.sectorSize = bs.getBytesPerSector(); in Fat()
DFat16BootSector.java162 (getBytesPerSector() - 1)) / getBytesPerSector(); in getFatType()
DFsInfoSector.java94 return bs.getFsInfoSectorNr() * bs.getBytesPerSector(); in offset()