Home | History | Annotate | Download | only in EnhancedFatDxe

Lines Matching refs:FreeInfo

165     Volume->FatInfoSector.FreeInfo.ClusterCount += 1;

166 if (Index < Volume->FatInfoSector.FreeInfo.NextCluster) {
167 Volume->FatInfoSector.FreeInfo.NextCluster = (UINT32) Index;
170 if (Volume->FatInfoSector.FreeInfo.ClusterCount != 0) {
171 Volume->FatInfoSector.FreeInfo.ClusterCount -= 1;
293 if (Volume->FatInfoSector.FreeInfo.NextCluster > (Volume->MaxCluster + 1)) {
294 if (Volume->FreeInfoValid && 0 < (INT32) (Volume->FatInfoSector.FreeInfo.ClusterCount)) {
299 if (Volume->FatInfoSector.FreeInfo.NextCluster > (Volume->MaxCluster + 1)) {
304 Cluster = FatGetFatEntry (Volume, Volume->FatInfoSector.FreeInfo.NextCluster);
311 Volume->FatInfoSector.FreeInfo.NextCluster += 1;
314 Cluster = Volume->FatInfoSector.FreeInfo.NextCluster;
315 Volume->FatInfoSector.FreeInfo.NextCluster += 1;
720 Volume->FatInfoSector.FreeInfo.ClusterCount = 0;
727 Volume->FatInfoSector.FreeInfo.ClusterCount += 1;
728 Volume->FatInfoSector.FreeInfo.NextCluster = (UINT32) Index;