Home | History | Annotate | Download | only in SecCore

Lines Matching defs:File

1 /** @file

39 EFI_FFS_FILE_HEADER *File;
61 File = (EFI_FFS_FILE_HEADER*)(UINTN) CurrentAddress;
62 if (IS_FFS_FILE2 (File)) {
63 Size = FFS_FILE2_SIZE (File);
68 Size = FFS_FILE_SIZE (File);
82 if (File->Type != EFI_FV_FILETYPE_SECURITY_CORE &&
83 File->Type != EFI_FV_FILETYPE_PEI_CORE) {
88 // Loop through the FFS file sections within the FFS file
90 if (IS_FFS_FILE2 (File)) {
91 EndOfSection = (EFI_PHYSICAL_ADDRESS) (UINTN) ((UINT8 *) File + sizeof (EFI_FFS_FILE_HEADER2));
93 EndOfSection = (EFI_PHYSICAL_ADDRESS) (UINTN) ((UINT8 *) File + sizeof (EFI_FFS_FILE_HEADER));
120 if (File->Type == EFI_FV_FILETYPE_SECURITY_CORE) {
149 It also find SEC and PEI Core file debug inforamtion. It will report them if