HomeSort by relevance Sort by last modified time
    Searched full:fatnr (Results 1 - 3 of 3) sorted by null

  /tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
FatUtils.java 37 * @param fatNr (0..)
41 public static long getFatOffset(BootSector bs, int fatNr) {
49 offset += fatNr * fatSize;
Fat.java 55 * @param fatNr the number of the {@code Fat} to read
58 * @throws IllegalArgumentException if {@code fatNr} is greater than
61 public static Fat read(BootSector bs, int fatNr)
64 if (fatNr > bs.getNrFats()) {
67 " FATs when reading FAT #" + fatNr);
70 final long fatOffset = FatUtils.getFatOffset(bs, fatNr);
80 * @param fatNr the number of the {@code Fat} to create
83 * @throws IllegalArgumentException if {@code fatNr} is greater than
86 public static Fat create(BootSector bs, int fatNr)
89 if (fatNr > bs.getNrFats())
    [all...]
  /prebuilts/devtools/tools/lib/
fat32lib.jar 

Completed in 71 milliseconds