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

  /device/linaro/bootloader/edk2/FatPkg/EnhancedFatDxe/
DirectoryCache.c 22 @param ODir - The directory to be freed.
28 IN FAT_ODIR *ODir
36 while (!IsListEmpty (&ODir->ChildList)) {
37 DirEnt = DIRENT_FROM_LINK (ODir->ChildList.ForwardLink);
46 FreePool (ODir);
62 FAT_ODIR *ODir;
64 ODir = AllocateZeroPool (sizeof (FAT_ODIR));
65 if (ODir != NULL) {
69 ODir->Signature = FAT_ODIR_SIGNATURE;
70 InitializeListHead (&ODir->ChildList);
    [all...]
Hash.c 69 @param ODir - The directory to be searched.
77 IN FAT_ODIR *ODir,
82 for (PreviousHashNode = &ODir->LongNameHashTable[FatHashLongName (LongNameString)];
98 @param ODir - The directory to be searched.
106 IN FAT_ODIR *ODir,
111 for (PreviousHashNode = &ODir->ShortNameHashTable[FatHashShortName (ShortNameString)];
127 @param ODir - The parent directory.
133 IN FAT_ODIR *ODir,
144 HashTable = ODir->ShortNameHashTable;
151 HashTable = ODir->LongNameHashTable;
    [all...]
DirectoryManage.c 196 ASSERT (OFile->ODir == NULL);
314 @param ODir - The parent OFile which needs to be updated.
321 IN FAT_ODIR *ODir,
326 DirEnt->Link.BackLink = &ODir->ChildList;
329 FatInsertToHashTable (ODir, DirEnt);
353 FAT_ODIR *ODir;
356 ODir = OFile->ODir;
360 ASSERT (ODir != NULL);
364 ASSERT (!ODir->EndOfDir);
    [all...]
ReadWrite.c 48 if (OFile->ODir != NULL) {
90 if (OFile->ODir != NULL) {
134 FAT_ODIR *ODir;
139 ODir = OFile->ODir;
145 if (CurrentPos < ODir->CurrentPos) {
164 } while (ODir->CurrentPos <= CurrentPos);
175 CurrentPos = ODir->CurrentPos;
224 if ((OFile->ODir != NULL) && (IoMode == WriteData)) {
272 if (OFile->ODir != NULL) {
    [all...]
Delete.c 73 if (OFile->ODir != NULL) {
FileName.c 194 ASSERT (Parent->ODir->EndOfDir);
211 while (*FatShortNameHashSearch (Parent->ODir, ShortName) != NULL) {
Fat.h 290 // OFile represents a file, then ODir = NULL
292 FAT_ODIR *ODir;
    [all...]
Open.c 149 if (OFile->ODir != NULL) {
Info.c 414 if (OFile->ODir != NULL) {
447 if (OFile->ODir != NULL || ReadOnly) {

Completed in 79 milliseconds