Home
last modified time | relevance | path

Searched refs:fatType (Results 1 – 3 of 3) sorted by relevance

/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DFat.java41 private final FatType fatType; field in Fat
108 this.fatType = bs.getFatType(); in Fat()
135 fatType.getEntrySize())]; in Fat()
143 return fatType; in getFatType()
167 (0xFFFFF00L & fatType.getBitMask()); in init()
168 entries[1] = fatType.getEofMarker(); in init()
182 entries[i] = fatType.readEntry(data, i); in read()
199 fatType.writeEntry(data, index, entries[index]); in writeCopy()
303 entries[entryIndex] = fatType.getEofMarker(); in allocNew()
384 entries[(int) cluster] = fatType.getEofMarker(); in setEof()
[all …]
DSuperFloppyFormatter.java89 private FatType fatType; field in SuperFloppyFormatter
171 bs.setFileSystemTypeLabel(fatType.getLabel()); in initBootSector()
196 if (fatType == FatType.FAT32) { in format()
230 if (fatType == FatType.FAT32) { in format()
239 if (fatType == FatType.FAT32) { in format()
279 if (fatType == FatType.FAT32) in sectorsPerFat()
332 return this.fatType; in getFatType()
345 public SuperFloppyFormatter setFatType(FatType fatType) in setFatType() argument
348 if (fatType == null) throw new NullPointerException(); in setFatType()
350 switch (fatType) { in setFatType()
[all …]
DFatFileSystem.java47 private final FatType fatType; field in FatFileSystem
75 this.fatType = bs.getFatType(); in FatFileSystem()
87 if (fatType == FatType.FAT32) { in FatFileSystem()
140 return this.fatType; in getFatType()
153 if (fromDir == null && fatType != FatType.FAT32) { in getVolumeLabel()
175 if (fatType != FatType.FAT32) { in setVolumeLabel()