Home | History | Annotate | Download | only in FvSimpleFileSystemDxe

Lines Matching defs:NewFileNameLength

488   UINTN                       NewFileNameLength;

560 // NewFileNameLength = FileNameLength + 1 + 4 = (Number of non-null character) + (file extension) + (a null character)
561 NewFileNameLength = FileNameLength + 1 + 4;
562 FileNameWithExtension = AllocateCopyPool (NewFileNameLength * 2, FileName);
563 StrCatS (FileNameWithExtension, NewFileNameLength, L".EFI");