/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Include/ |
D | EfiImageFormat.h | 126 EFI_COMMON_SECTION_HEADER CommonHeader; member 137 EFI_COMMON_SECTION_HEADER CommonHeader; member 170 EFI_COMMON_SECTION_HEADER CommonHeader; member 179 EFI_COMMON_SECTION_HEADER CommonHeader; member 188 EFI_COMMON_SECTION_HEADER CommonHeader; member 197 EFI_COMMON_SECTION_HEADER CommonHeader; member 206 EFI_COMMON_SECTION_HEADER CommonHeader; member 217 EFI_COMMON_SECTION_HEADER CommonHeader; member 227 EFI_COMMON_SECTION_HEADER CommonHeader; member 236 EFI_COMMON_SECTION_HEADER CommonHeader; member [all …]
|
D | EfiBootScript.h | 220 EFI_BOOT_SCRIPT_COMMON_HEADER *CommonHeader; member
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/Include/Common/ |
D | PiFirmwareFile.h | 180 EFI_COMMON_SECTION_HEADER CommonHeader; member 186 EFI_COMMON_SECTION_HEADER2 CommonHeader; member 207 EFI_COMMON_SECTION_HEADER CommonHeader; member 212 EFI_COMMON_SECTION_HEADER2 CommonHeader; member 225 EFI_COMMON_SECTION_HEADER CommonHeader; member 232 EFI_COMMON_SECTION_HEADER2 CommonHeader; member 273 EFI_COMMON_SECTION_HEADER CommonHeader; member 282 EFI_COMMON_SECTION_HEADER2 CommonHeader; member 295 EFI_COMMON_SECTION_HEADER CommonHeader; member 301 EFI_COMMON_SECTION_HEADER2 CommonHeader; member [all …]
|
/device/linaro/bootloader/edk2/MdePkg/Include/Pi/ |
D | PiFirmwareFile.h | 272 EFI_COMMON_SECTION_HEADER CommonHeader; member 287 EFI_COMMON_SECTION_HEADER2 CommonHeader; member 329 EFI_COMMON_SECTION_HEADER CommonHeader; member 340 EFI_COMMON_SECTION_HEADER2 CommonHeader; member 359 EFI_COMMON_SECTION_HEADER CommonHeader; member 378 EFI_COMMON_SECTION_HEADER2 CommonHeader; member 445 EFI_COMMON_SECTION_HEADER CommonHeader; member 454 EFI_COMMON_SECTION_HEADER2 CommonHeader; member 463 EFI_COMMON_SECTION_HEADER CommonHeader; member 473 EFI_COMMON_SECTION_HEADER2 CommonHeader; member
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/ |
D | MigrationUtilities.py | 57 def SetIdentification(CommonHeader, XmlCommonHeader, NameTag, FileName): argument 61 CommonHeader.Name = XmlElement(XmlCommonHeader, XmlTag) 64 CommonHeader.Guid = XmlElement(XmlCommonHeader, XmlTag) 67 CommonHeader.Version = XmlElement(XmlCommonHeader, XmlTag) 69 CommonHeader.FileName = os.path.basename(FileName) 70 CommonHeader.FullPath = os.path.abspath(FileName) 102 def SetCommonHeader(CommonHeader, XmlCommonHeader): argument 107 CommonHeader.Abstract = XmlElement(XmlCommonHeader, XmlTag) 110 CommonHeader.Description = XmlElement(XmlCommonHeader, XmlTag) 113 CommonHeader.Copyright = XmlElement(XmlCommonHeader, XmlTag) [all …]
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/GenSec/ |
D | GenSec.c | 757 memset(CompressionSect2->CommonHeader.Size, 0xff, sizeof(UINT8) * 3); in GenSectionCompressionSection() 758 CompressionSect2->CommonHeader.Type = EFI_SECTION_COMPRESSION; in GenSectionCompressionSection() 759 CompressionSect2->CommonHeader.ExtendedSize = TotalLength; in GenSectionCompressionSection() 765 CompressionSect->CommonHeader.Type = EFI_SECTION_COMPRESSION; in GenSectionCompressionSection() 766 CompressionSect->CommonHeader.Size[0] = (UINT8) (TotalLength & 0xff); in GenSectionCompressionSection() 767 CompressionSect->CommonHeader.Size[1] = (UINT8) ((TotalLength & 0xff00) >> 8); in GenSectionCompressionSection() 768 CompressionSect->CommonHeader.Size[2] = (UINT8) ((TotalLength & 0xff0000) >> 16); in GenSectionCompressionSection() 909 Crc32GuidSect2->GuidSectionHeader.CommonHeader.Type = EFI_SECTION_GUID_DEFINED; in GenSectionGuidDefinedSection() 910 Crc32GuidSect2->GuidSectionHeader.CommonHeader.Size[0] = (UINT8) 0xff; in GenSectionGuidDefinedSection() 911 Crc32GuidSect2->GuidSectionHeader.CommonHeader.Size[1] = (UINT8) 0xff; in GenSectionGuidDefinedSection() [all …]
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/ |
D | FvLib.c | 434 while ((UINTN) CurrentSection.CommonHeader < (UINTN) SearchEnd) { in SearchSectionByType() 435 if (CurrentSection.CommonHeader->Type == SectionType) { in SearchSectionByType() 450 CurrentSection.CommonHeader->Type == EFI_SECTION_GUID_DEFINED && in SearchSectionByType() 452 InnerSection.CommonHeader = (EFI_COMMON_SECTION_HEADER *) in SearchSectionByType() 453 ((UINTN) CurrentSection.CommonHeader + CurrentSection.GuidDefinedSection->DataOffset); in SearchSectionByType() 454 SectionSize = CurrentSection.CommonHeader->Size[0] + in SearchSectionByType() 455 (CurrentSection.CommonHeader->Size[1] << 8) + in SearchSectionByType() 456 (CurrentSection.CommonHeader->Size[2] << 16); in SearchSectionByType() 459 (UINT8 *) ((UINTN) CurrentSection.CommonHeader + SectionSize), in SearchSectionByType() 472 …urrentSection.CommonHeader = (EFI_COMMON_SECTION_HEADER *) ((((UINTN) CurrentSection.CommonHeader)… in SearchSectionByType() [all …]
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/ |
D | FvLib.c | 437 while ((UINTN) CurrentSection.CommonHeader < (UINTN) SearchEnd) { in SearchSectionByType() 438 if (CurrentSection.CommonHeader->Type == SectionType) { in SearchSectionByType() 452 if (CurrentSection.CommonHeader->Type == EFI_SECTION_GUID_DEFINED) { in SearchSectionByType() 453 if (GetLength(CurrentSection.CommonHeader->Size) == 0xffffff) { in SearchSectionByType() 462 CurrentSection.CommonHeader->Type == EFI_SECTION_GUID_DEFINED && in SearchSectionByType() 464 InnerSection.CommonHeader = (EFI_COMMON_SECTION_HEADER *) in SearchSectionByType() 465 ((UINTN) CurrentSection.CommonHeader + GuidDataOffset); in SearchSectionByType() 466 SectionSize = GetSectionFileLength(CurrentSection.CommonHeader); in SearchSectionByType() 469 (UINT8 *) ((UINTN) CurrentSection.CommonHeader + SectionSize), in SearchSectionByType() 482 …tSection.CommonHeader = (EFI_COMMON_SECTION_HEADER *) ((((UINTN) CurrentSection.CommonHeader) + Ge… in SearchSectionByType() [all …]
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenCRC32Section/ |
D | GenCRC32Section.c | 97 Crc32Header.GuidSectionHeader.CommonHeader.Type = EFI_SECTION_GUID_DEFINED; in SignSectionWithCrc32() 98 Crc32Header.GuidSectionHeader.CommonHeader.Size[0] = (UINT8) (TotalSize & 0xff); in SignSectionWithCrc32() 99 Crc32Header.GuidSectionHeader.CommonHeader.Size[1] = (UINT8) ((TotalSize & 0xff00) >> 8); in SignSectionWithCrc32() 100 Crc32Header.GuidSectionHeader.CommonHeader.Size[2] = (UINT8) ((TotalSize & 0xff0000) >> 16); in SignSectionWithCrc32()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/ |
D | lobject.h | 77 #define CommonHeader GCObject *next; lu_byte tt; lu_byte marked macro 84 CommonHeader; 413 CommonHeader; 434 CommonHeader; 468 CommonHeader; 497 CommonHeader; 514 CommonHeader; lu_byte nupvalues; GCObject *gclist 561 CommonHeader;
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenSection/ |
D | GenSection.c | 530 CompressionSect.CommonHeader.Type = (EFI_SECTION_TYPE) SectionType; in GenSectionCompressionSection() 531 CompressionSect.CommonHeader.Size[0] = (UINT8) (TotalLength & 0xff); in GenSectionCompressionSection() 532 CompressionSect.CommonHeader.Size[1] = (UINT8) ((TotalLength & 0xff00) >> 8); in GenSectionCompressionSection() 533 CompressionSect.CommonHeader.Size[2] = (UINT8) ((TotalLength & 0xff0000) >> 16); in GenSectionCompressionSection() 649 Crc32GuidSect.GuidSectionHeader.CommonHeader.Type = (EFI_SECTION_TYPE) SectionType; in GenSectionGuidDefinedSection() 650 Crc32GuidSect.GuidSectionHeader.CommonHeader.Size[0] = (UINT8) (TotalLength & 0xff); in GenSectionGuidDefinedSection() 651 Crc32GuidSect.GuidSectionHeader.CommonHeader.Size[1] = (UINT8) ((TotalLength & 0xff00) >> 8); in GenSectionGuidDefinedSection() 652 … Crc32GuidSect.GuidSectionHeader.CommonHeader.Size[2] = (UINT8) ((TotalLength & 0xff0000) >> 16); in GenSectionGuidDefinedSection()
|
/device/linaro/bootloader/edk2/MdeModulePkg/Application/MemoryProfileInfo/ |
D | MemoryProfileInfo.c | 502 MEMORY_PROFILE_COMMON_HEADER *CommonHeader; in ScanMemoryProfileBySignature() local 506 CommonHeader = (MEMORY_PROFILE_COMMON_HEADER *) (UINTN) ProfileBuffer; in ScanMemoryProfileBySignature() 507 while ((UINTN) CommonHeader < ProfileEnd) { in ScanMemoryProfileBySignature() 508 if (CommonHeader->Signature == Signature) { in ScanMemoryProfileBySignature() 512 return (VOID *) CommonHeader; in ScanMemoryProfileBySignature() 514 CommonHeader = (MEMORY_PROFILE_COMMON_HEADER *) ((UINTN) CommonHeader + CommonHeader->Length); in ScanMemoryProfileBySignature()
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/GenFfs/ |
D | GenFfs.c | 389 SectHeader->CommonHeader.Size[0] = (UINT8) (Offset & 0xff); in GetSectionContents() 390 SectHeader->CommonHeader.Size[1] = (UINT8) ((Offset & 0xff00) >> 8); in GetSectionContents() 391 SectHeader->CommonHeader.Size[2] = (UINT8) ((Offset & 0xff0000) >> 16); in GetSectionContents() 403 SectHeader->CommonHeader.Type = EFI_SECTION_FREEFORM_SUBTYPE_GUID; in GetSectionContents() 406 SectHeader->CommonHeader.Type = EFI_SECTION_RAW; in GetSectionContents()
|
/device/linaro/bootloader/edk2/QuarkPlatformPkg/Library/RecoveryOemHookLib/ |
D | RecoveryOemHookLib.inf | 34 CommonHeader.h
|
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Library/IohLib/ |
D | IohLib.inf | 35 CommonHeader.h
|
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Library/IntelQNCLib/ |
D | IntelQNCLib.inf | 36 CommonHeader.h
|
/device/linaro/bootloader/edk2/SecurityPkg/Library/TpmCommLib/ |
D | TpmCommLib.inf | 35 CommonHeader.h
|
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Library/SmbusLib/ |
D | SmbusLib.inf | 36 CommonHeader.h
|
/device/linaro/bootloader/edk2/QuarkPlatformPkg/Pci/Dxe/PciPlatform/ |
D | PciPlatform.inf | 34 CommonHeader.h
|
/device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/Library/IntelPchAcpiTimerLib/ |
D | IntelPchAcpiTimerLib.inf | 50 CommonHeader.h
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/GenFv/ |
D | GenFvInternalLib.c | 1019 PadSize = GetSectionFileLength (PadSection.CommonHeader); in AdjustInternalFfsPadding() 1028 Remainder = (UINT8 *) PadSection.CommonHeader + PadSize; in AdjustInternalFfsPadding() 1039 PadSection.CommonHeader->Size[0] = (UINT8) (PadSize & 0xff); in AdjustInternalFfsPadding() 1040 PadSection.CommonHeader->Size[1] = (UINT8) ((PadSize & 0xff00) >> 8); in AdjustInternalFfsPadding() 1041 PadSection.CommonHeader->Size[2] = (UINT8) ((PadSize & 0xff0000) >> 16); in AdjustInternalFfsPadding() 1551 SecHeaderSize = GetSectionHeaderLength(Pe32Section.CommonHeader); in UpdateResetVector() 1606 SecHeaderSize = GetSectionHeaderLength(Pe32Section.CommonHeader); in UpdateResetVector() 1915 … (VOID *) ((UINTN) Pe32Section.Pe32Section + GetSectionHeaderLength(Pe32Section.CommonHeader)), in UpdateArmResetVectorIfNeeded() 1929 … (UINTN) Pe32Section.Pe32Section + GetSectionHeaderLength(Pe32Section.CommonHeader) - (UINTN) FvIm… in UpdateArmResetVectorIfNeeded() 1963 … (VOID *) ((UINTN) Pe32Section.Pe32Section + GetSectionHeaderLength(Pe32Section.CommonHeader)), in UpdateArmResetVectorIfNeeded() [all …]
|
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/Library/I2cLib/ |
D | I2cLib.inf | 38 CommonHeader.h
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenFfsFile/ |
D | GenFfsFile.c | 549 GuidSectionHeader.CommonHeader.Type = EFI_SECTION_GUID_DEFINED; in GenSimpleGuidSection() 550 GuidSectionHeader.CommonHeader.Size[0] = (UINT8) (TotalSize & 0xff); in GenSimpleGuidSection() 551 GuidSectionHeader.CommonHeader.Size[1] = (UINT8) ((TotalSize & 0xff00) >> 8); in GenSimpleGuidSection() 552 GuidSectionHeader.CommonHeader.Size[2] = (UINT8) ((TotalSize & 0xff0000) >> 16); in GenSimpleGuidSection() 701 CompressionSet.CommonHeader.Type = EFI_SECTION_COMPRESSION; in CompressSection() 702 CompressionSet.CommonHeader.Size[0] = (UINT8) (TotalSize & 0xff); in CompressSection() 703 CompressionSet.CommonHeader.Size[1] = (UINT8) ((TotalSize & 0xff00) >> 8); in CompressSection() 704 CompressionSet.CommonHeader.Size[2] = (UINT8) ((TotalSize & 0xff0000) >> 16); in CompressSection()
|
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkSouthCluster/IohInit/Dxe/ |
D | IohInitDxe.inf | 44 CommonHeader.h
|
/device/linaro/bootloader/edk2/QuarkSocPkg/QuarkNorthCluster/Smm/DxeSmm/QncSmmDispatcher/ |
D | QNCSmmDispatcher.inf | 46 CommonHeader.h
|