HomeSort by relevance Sort by last modified time
    Searched refs:FatInfoSector (Results 1 - 5 of 5) sorted by null

  /device/linaro/bootloader/edk2/FatPkg/EnhancedFatDxe/
FileSpace.c 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;
    [all...]
Init.c 368 FatDiskIo (Volume, ReadDisk, Volume->FreeInfoPos, sizeof (FAT_INFO_SECTOR), &Volume->FatInfoSector, NULL);
369 if (Volume->FatInfoSector.Signature == FAT_INFO_SIGNATURE &&
370 Volume->FatInfoSector.InfoBeginSignature == FAT_INFO_BEGIN_SIGNATURE &&
371 Volume->FatInfoSector.InfoEndSignature == FAT_INFO_END_SIGNATURE &&
372 Volume->FatInfoSector.FreeInfo.ClusterCount <= Volume->MaxCluster
381 if (FAT_MIN_CLUSTER > Volume->FatInfoSector.FreeInfo.NextCluster ||
382 Volume->FatInfoSector.FreeInfo.NextCluster > Volume->MaxCluster + 1
384 Volume->FatInfoSector.FreeInfo.NextCluster = FAT_MIN_CLUSTER;
Flush.c 407 Status = FatDiskIo (Volume, WriteDisk, Volume->FreeInfoPos, sizeof (FAT_INFO_SECTOR), &Volume->FatInfoSector, Task);
Info.c 154 Volume->FatInfoSector.FreeInfo.ClusterCount,
Fat.h 341 FAT_INFO_SECTOR FatInfoSector; // Free cluster info
957 Update the free cluster info of FatInfoSector of the volume.
    [all...]

Completed in 98 milliseconds