Home | History | Annotate | Download | only in EnhancedFatDxe

Lines Matching full:attributes

77   @param  Attributes            - Attributes to set if the file is created.

81 @retval EFI_INVALID_PARAMETER - The open mode is conflict with the attributes
96 IN UINT8 Attributes
123 Status = FatLocateOFile (&OFile, FileName, Attributes, NewFileName);
137 Status = FatCreateDirEnt (OFile, NewFileName, Attributes, &DirEnt);
163 FileAttributes = OFile->DirEnt->Entry.Attributes;
189 @param Attributes - Attributes to set if the file is created.
194 The Attributes is not the valid attributes.
207 IN UINT64 Attributes,
237 // Check for valid Attributes for file creation case.
239 if (((OpenMode & EFI_FILE_MODE_CREATE) != 0) && (Attributes & (EFI_FILE_READ_ONLY | (~EFI_FILE_VALID_ATTR))) != 0) {
271 Status = FatOFileOpen (OFile, &NewIFile, FileName, OpenMode, (UINT8) Attributes);
305 @param Attributes - Attributes to set if the file is created.
309 The Attributes is not the valid attributes.
322 IN UINT64 Attributes
325 return FatOpenEx (FHand, NewHandle, FileName, OpenMode, Attributes, NULL);