Home
last modified time | relevance | path

Searched refs:BootSector (Results 1 – 8 of 8) sorted by relevance

/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DFatUtils.java41 public static long getFatOffset(BootSector bs, int fatNr) { in getFatOffset()
61 public static long getRootDirOffset(BootSector bs) { in getRootDirOffset()
80 public static long getFilesOffset(BootSector bs) { in getFilesOffset()
DFatFileSystem.java44 private final BootSector bs;
69 this.bs = BootSector.read(device); in FatFileSystem()
233 public BootSector getBootSector() { in getBootSector()
DFat.java45 private final BootSector bs;
61 public static Fat read(BootSector bs, int fatNr) in read()
86 public static Fat create(BootSector bs, int fatNr) in create()
106 private Fat(BootSector bs, long offset) throws IOException { in Fat()
151 public BootSector getBootSector() { in getBootSector()
DBootSector.java33 public abstract class BootSector extends Sector { class
69 protected BootSector(BlockDevice device) { in BootSector() method in BootSector
74 public static BootSector read(BlockDevice device) throws IOException { in read()
113 final BootSector result = in read()
DFat32BootSector.java29 final class Fat32BootSector extends BootSector {
DFsInfoSector.java48 super(device, offset, BootSector.SIZE); in FsInfoSector()
DFat16BootSector.java29 final class Fat16BootSector extends BootSector {
DSuperFloppyFormatter.java167 private void initBootSector(BootSector bs) in initBootSector()
193 final BootSector bs; in format()