Searched refs:FatType (Results 1 – 8 of 8) sorted by relevance
89 private FatType fatType;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()294 private FatType fatTypeFromDevice() throws IOException { in fatTypeFromDevice()305 public static FatType fatTypeFromSize(long sizeInBytes) { in fatTypeFromSize()307 if (sizeInMb < 4) return FatType.FAT12; in fatTypeFromSize()308 else if (sizeInMb < 512) return FatType.FAT16; in fatTypeFromSize()309 else return FatType.FAT32; in fatTypeFromSize()[all …]
47 private final FatType fatType;87 if (fatType == FatType.FAT32) { in FatFileSystem()137 public FatType getFatType() { in getFatType()153 if (fromDir == null && fatType != FatType.FAT32) { in getVolumeLabel()175 if (fatType != FatType.FAT32) { in setVolumeLabel()
160 public FatType getFatType() { in getFatType()172 FatType.FAT16 : FatType.FAT12; in getFatType()
151 public FatType getFatType() { in getFatType()152 return FatType.FAT32; in getFatType()
29 public enum FatType { enum119 private FatType(int maxClusters, in FatType() method in FatType
41 private final FatType fatType;142 public FatType getFatType() { in getFatType()
68 if (fat.getFatType() != FatType.FAT32) { in createRoot()
121 public abstract FatType getFatType(); in getFatType()