Home
last modified time | relevance | path

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

/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DFatFileSystem.java43 private final FsInfoSector fsiSector; field in FatFileSystem
92 this.fsiSector = FsInfoSector.read(f32bs); in FatFileSystem()
94 if (fsiSector.getFreeClusterCount() != fat.getFreeClusterCount()) { in FatFileSystem()
97 fsiSector.getFreeClusterCount()); in FatFileSystem()
102 this.fsiSector = null; in FatFileSystem()
205 if (fsiSector != null) { in flush()
206 fsiSector.setFreeClusterCount(fat.getFreeClusterCount()); in flush()
207 fsiSector.setLastAllocatedCluster(fat.getLastAllocatedCluster()); in flush()
208 fsiSector.write(); in flush()