Home
last modified time | relevance | path

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

/tools/external/fat32lib/src/main/java/de/waldheinz/fs/fat/
DFat.java49 private int lastAllocatedCluster; field in Fat
124 this.lastAllocatedCluster = FIRST_CLUSTER; in Fat()
230 return this.lastAllocatedCluster; in getLastFreeCluster()
281 for (i = lastAllocatedCluster; i < lastClusterIndex; i++) { in allocNew()
289 for (i = FIRST_CLUSTER; i < lastAllocatedCluster; i++) { in allocNew()
304 lastAllocatedCluster = entryIndex % lastClusterIndex; in allocNew()
305 if (lastAllocatedCluster < FIRST_CLUSTER) in allocNew()
306 lastAllocatedCluster = FIRST_CLUSTER; in allocNew()
338 return this.lastAllocatedCluster; in getLastAllocatedCluster()