Home | History | Annotate | Download | only in EdkiiSystemCapsuleLib

Lines Matching defs:SectionHeader

102   EFI_COMMON_SECTION_HEADER             *SectionHeader;

111 SectionHeader = SectionBuffer;
114 while ((UINTN)SectionHeader < (UINTN)SectionBuffer + SectionBufferSize) {
115 DEBUG ((DEBUG_INFO, "GetSectionByType - Section: 0x%08x\n", SectionHeader));
116 if (IS_SECTION2(SectionHeader)) {
117 SectionSize = SECTION2_SIZE(SectionHeader);
119 SectionSize = SECTION_SIZE(SectionHeader);
122 if (SectionHeader->Type == SectionType) {
124 *OutSectionBuffer = (UINT8 *)SectionHeader;
136 DEBUG ((DEBUG_INFO, "GetSectionByType - other section type 0x%x\n", SectionHeader->Type));
142 SectionHeader = (EFI_COMMON_SECTION_HEADER *)((UINTN)SectionHeader + ALIGN_VALUE(SectionSize, 4));