• Home
  • Raw
  • Download

Lines Matching refs:EntryPos

35   IN     UINTN                EntryPos,  in FatAccessEntry()  argument
42 Position = EntryPos * sizeof (FAT_DIRECTORY_ENTRY); in FatAccessEntry()
76 UINTN EntryPos; in FatStoreDirEnt() local
82 EntryPos = DirEnt->EntryPos; in FatStoreDirEnt()
87 Status = FatAccessEntry (OFile, WriteData, EntryPos, &DirEnt->Entry); in FatStoreDirEnt()
123 EntryPos--; in FatStoreDirEnt()
128 Status = FatAccessEntry (OFile, WriteData, EntryPos, &LfnEntry); in FatStoreDirEnt()
244 UINTN EntryPos; in FatLoadLongNameEntry() local
250 EntryPos = DirEnt->EntryPos; in FatLoadLongNameEntry()
259 if (EntryPos == 0) { in FatLoadLongNameEntry()
264 EntryPos--; in FatLoadLongNameEntry()
265 Status = FatAccessEntry (Parent, ReadData, EntryPos, &LfnEntry); in FatLoadLongNameEntry()
407 DirEnt->EntryPos = (UINT16) ODir->CurrentEndPos; in FatLoadNextDirEnt()
631 ODir->CurrentPos = DirEnt->EntryPos + 1; in FatGetNextDirEnt()
733 UINTN EntryPos; in FatSeekVolumeId() local
736 EntryPos = 0; in FatSeekVolumeId()
740 Status = FatAccessEntry (Root, ReadData, EntryPos, Entry); in FatSeekVolumeId()
746 DirEnt->EntryPos = (UINT16) EntryPos; in FatSeekVolumeId()
752 EntryPos++; in FatSeekVolumeId()
797 LabelPos = LabelDirEnt.EntryPos; in FatFirstFitInsertDirEnt()
810 if (NewEntryPos + CurrentDirEnt->EntryCount <= CurrentDirEnt->EntryPos) { in FatFirstFitInsertDirEnt()
819 CurrentPos = CurrentDirEnt->EntryPos; in FatFirstFitInsertDirEnt()
828 DirEnt->EntryPos = (UINT16) NewEntryPos; in FatFirstFitInsertDirEnt()
894 DirEnt->EntryPos = (UINT16) (ODir->CurrentEndPos - 1); in FatNewEntryPos()