Home
last modified time | relevance | path

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

/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DFat16RootDirectory.java34 private Fat16RootDirectory(Fat16BootSector bs, boolean readOnly) { in Fat16RootDirectory()
54 Fat16BootSector bs, boolean readOnly) throws IOException { in read()
71 Fat16BootSector bs) throws IOException { in create()
DSuperFloppyFormatter.java213 bs = new Fat16BootSector(device); in format()
216 final Fat16BootSector f16bs = (Fat16BootSector) bs; in format()
245 rootDirStore = Fat16RootDirectory.create((Fat16BootSector) bs); in format()
459 while (sectors / result > Fat16BootSector.MAX_FAT12_CLUSTERS) { in sectorsPerCluster12()
DFatFileSystem.java101 Fat16RootDirectory.read((Fat16BootSector) bs,readOnly); in FatFileSystem()
154 return ((Fat16BootSector)bs).getVolumeLabel(); in getVolumeLabel()
176 ((Fat16BootSector)bs).setVolumeLabel(label); in setVolumeLabel()
DBootSector.java89 Fat16BootSector.ROOT_DIR_ENTRIES_OFFSET); in read()
101 bb.getShort(Fat16BootSector.SECTORS_PER_FAT_OFFSET) & 0xffff; in read()
114 (clusterCount > Fat16BootSector.MAX_FAT16_CLUSTERS) ? in read()
115 new Fat32BootSector(device) : new Fat16BootSector(device); in read()
DFat16BootSector.java29 final class Fat16BootSector extends BootSector { class
93 public Fat16BootSector(BlockDevice device) { in Fat16BootSector() method in Fat16BootSector