Searched defs:SectionType (Results 1 - 18 of 18) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/GenFds/
H A DSection.py28 SectionType = { variable in class:Section
122 Suffix = Section.SectionType.get(FileType)
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/FirmwareVolume/FwVolDxe/
H A DFwVolRead.c285 irrespective of the value of the SectionType
479 @param SectionType Indicates the section type to return.
481 type of SectionType to return.
505 IN EFI_SECTION_TYPE SectionType,
584 if (SectionType == 0) {
602 &SectionType,
502 FvReadFileSection( IN CONST EFI_FIRMWARE_VOLUME2_PROTOCOL *This, IN CONST EFI_GUID *NameGuid, IN EFI_SECTION_TYPE SectionType, IN UINTN SectionInstance, IN OUT VOID **Buffer, IN OUT UINTN *BufferSize, OUT UINT32 *AuthenticationStatus ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/FwVol/
H A DFwVolRead.c242 irrespective of the value of the SectionType
382 @param SectionType Indicates the section type to return.
384 type of SectionType to return.
408 IN EFI_SECTION_TYPE SectionType,
474 // If SectionType == 0 We need the whole section stream
478 (SectionType == 0) ? NULL : &SectionType,
480 (SectionType == 0) ? 0 : SectionInstance,
405 FvReadFileSection( IN CONST EFI_FIRMWARE_VOLUME2_PROTOCOL *This, IN CONST EFI_GUID *NameGuid, IN EFI_SECTION_TYPE SectionType, IN UINTN SectionInstance, IN OUT VOID **Buffer, IN OUT UINTN *BufferSize, OUT UINT32 *AuthenticationStatus ) argument
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/FirmwareVolume/UpdateDriverDxe/
H A DUpdateDispatcher.c368 EFI_SECTION_TYPE SectionType; local
410 SectionType = EFI_SECTION_FIRMWARE_VOLUME_IMAGE;
416 SectionType,
608 EFI_SECTION_TYPE SectionType; local
683 SectionType = EFI_SECTION_PE32;
689 SectionType,
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/DxeServicesLib/
H A DDxeServicesLib.c74 by NameGuid, SectionType and SectionInstance.
79 If SectionType is EFI_SECTION_TE, EFI_SECTION_TE is used as section type to start the search. If EFI_SECTION_TE section
94 @param SectionType The Firmware Section type.
102 @retval EFI_NOT_FOUND The image specified by NameGuid and SectionType
116 IN EFI_SECTION_TYPE SectionType,
149 SectionType,
156 if (EFI_ERROR (Status) && (SectionType == EFI_SECTION_TE)) {
183 is made for FFS sections of type SectionType. If the FFS file contains at least SectionInstance instances
184 of the FFS section specified by SectionType, then the SectionInstance instance is returned in Buffer.
188 are retrieved from an FFS file based on SectionType an
113 InternalGetSectionFromFv( IN EFI_HANDLE FvHandle, IN CONST EFI_GUID *NameGuid, IN EFI_SECTION_TYPE SectionType, IN UINTN SectionInstance, OUT VOID **Buffer, OUT UINTN *Size ) argument
226 GetSectionFromAnyFvByFileType( IN EFI_FV_FILETYPE FileType, IN UINTN FileInstance, IN EFI_SECTION_TYPE SectionType, IN UINTN SectionInstance, OUT VOID **Buffer, OUT UINTN *Size ) argument
366 GetSectionFromAnyFv( IN CONST EFI_GUID *NameGuid, IN EFI_SECTION_TYPE SectionType, IN UINTN SectionInstance, OUT VOID **Buffer, OUT UINTN *Size ) argument
492 GetSectionFromFv( IN CONST EFI_GUID *NameGuid, IN EFI_SECTION_TYPE SectionType, IN UINTN SectionInstance, OUT VOID **Buffer, OUT UINTN *Size ) argument
555 GetSectionFromFfs( IN EFI_SECTION_TYPE SectionType, IN UINTN SectionInstance, OUT VOID **Buffer, OUT UINTN *Size ) argument
616 EFI_SECTION_TYPE SectionType; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/PeiServicesLib/
H A DPeiServicesLib.c289 @param SectionType The value of the section type to find.
301 IN EFI_SECTION_TYPE SectionType,
309 return (*PeiServices)->FfsFindSectionData (PeiServices, SectionType, FileHandle, SectionData);
300 PeiServicesFfsFindSectionData( IN EFI_SECTION_TYPE SectionType, IN EFI_PEI_FILE_HANDLE FileHandle, OUT VOID **SectionData ) argument
/vbox/src/VBox/Devices/EFI/Firmware/OvmfPkg/Sec/
H A DSecMain.c133 @param[in] SectionType The section type to locate
145 IN EFI_SECTION_TYPE SectionType,
185 if (Section->Type == SectionType) {
189 DEBUG ((EFI_D_INFO, "Section->Type (0x%x) != SectionType (0x%x)\n", Section->Type, SectionType));
201 @param[in] SectionType The section type to locate
214 IN EFI_SECTION_TYPE SectionType,
266 SectionType,
142 FindFfsSectionInSections( IN VOID *Sections, IN UINTN SizeOfSections, IN EFI_SECTION_TYPE SectionType, OUT EFI_COMMON_SECTION_HEADER **FoundSection ) argument
211 FindFfsFileAndSection( IN EFI_FIRMWARE_VOLUME_HEADER *Fv, IN EFI_FV_FILETYPE FileType, IN EFI_SECTION_TYPE SectionType, OUT EFI_COMMON_SECTION_HEADER **FoundSection ) argument
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DFvLib.c403 IN EFI_SECTION_TYPE SectionType,
413 by FirstSection to SearchEnd for the Instance-th section of type SectionType.
422 SectionType The type of section to search.
441 if (CurrentSection.CommonHeader->Type == SectionType) {
455 if (SectionType != EFI_SECTION_GUID_DEFINED &&
466 SectionType,
487 IN EFI_SECTION_TYPE SectionType,
503 SectionType Type of file to search for.
549 SectionType,
400 SearchSectionByType( IN EFI_FILE_SECTION_POINTER FirstSection, IN UINT8 *SearchEnd, IN EFI_SECTION_TYPE SectionType, IN OUT UINTN *StartIndex, IN UINTN Instance, OUT EFI_FILE_SECTION_POINTER *Section ) argument
485 GetSectionByType( IN EFI_FFS_FILE_HEADER *File, IN EFI_SECTION_TYPE SectionType, IN UINTN Instance, OUT EFI_FILE_SECTION_POINTER *Section ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/Dispatcher/
H A DDispatcher.c251 EFI_SECTION_TYPE SectionType; local
261 SectionType = EFI_SECTION_DXE_DEPEX;
265 SectionType,
981 EFI_SECTION_TYPE SectionType; local
992 SectionType = EFI_SECTION_FIRMWARE_VOLUME_IMAGE;
1001 SectionType,
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/PiSmmCore/
H A DDispatcher.c704 EFI_SECTION_TYPE SectionType; local
714 SectionType = EFI_SECTION_SMM_DEPEX;
718 SectionType,
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenSec/
H A DGenSec.c161 fprintf (stdout, " -s [SectionType], --sectiontype [SectionType]\n\
162 SectionType defined in PI spec is one type of\n\
235 UINT8 SectionType,
254 SectionType - A valid section type string
315 CommonSect->Type = SectionType;
986 if ((stricmp (argv[0], "-s") == 0) || (stricmp (argv[0], "--SectionType") == 0)) {
1288 Error (NULL, 0, 1003, "Invalid option value", "SectionType = %s", SectionName);
232 GenSectionCommonLeafSection( CHAR8 **InputFileName, UINT32 InputFileNum, UINT8 SectionType, UINT8 **OutFileBuffer ) argument
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/SectionExtractionDxe/
H A DSectionExtraction.c138 @param SectionType A pointer to the type of section to search for.
180 IN EFI_SECTION_TYPE *SectionType,
1176 @param SectionType A pointer to the type of section to search for.
1218 IN EFI_SECTION_TYPE *SectionType,
1254 if (SectionType == NULL) {
1256 // SectionType == NULL means return the WHOLE section stream...
1267 *SectionType,
1215 GetSection( IN EFI_SECTION_EXTRACTION_PROTOCOL *This, IN UINTN SectionStreamHandle, IN EFI_SECTION_TYPE *SectionType, IN EFI_GUID *SectionDefinitionGuid, IN UINTN SectionInstance, IN VOID **Buffer, IN OUT UINTN *BufferSize, OUT UINT32 *AuthenticationStatus ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/SectionExtraction/
H A DCoreSectionExtraction.c1103 @param SectionType A pointer to the type of section to search for.
1160 IN EFI_SECTION_TYPE *SectionType,
1197 if (SectionType == NULL) {
1199 // SectionType == NULL means return the WHOLE section stream...
1210 *SectionType,
1158 GetSection( IN UINTN SectionStreamHandle, IN EFI_SECTION_TYPE *SectionType, IN EFI_GUID *SectionDefinitionGuid, IN UINTN SectionInstance, IN VOID **Buffer, IN OUT UINTN *BufferSize, OUT UINT32 *AuthenticationStatus, IN BOOLEAN IsFfs3Fv ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Pei/FwVol/
H A DFwVol.c610 Go through the file to search SectionType section.
615 @param SectionType Filter to find only section of this type.
629 IN EFI_SECTION_TYPE SectionType,
673 if (Section->Type == SectionType) {
693 SectionType,
754 SectionType,
786 @param SectionType Filter to find only sections of this type.
799 IN EFI_SECTION_TYPE SectionType,
811 return CoreFvHandle->FvPpi->FindSectionByType (CoreFvHandle->FvPpi, SectionType, FileHandle, SectionData);
627 ProcessSection( IN CONST EFI_PEI_SERVICES **PeiServices, IN EFI_SECTION_TYPE SectionType, IN EFI_COMMON_SECTION_HEADER *Section, IN UINTN SectionSize, OUT VOID **OutputBuffer, IN BOOLEAN IsFfs3Fv ) argument
797 PeiFfsFindSectionData( IN CONST EFI_PEI_SERVICES **PeiServices, IN EFI_SECTION_TYPE SectionType, IN EFI_PEI_FILE_HANDLE FileHandle, OUT VOID **SectionData ) argument
/vbox/src/VBox/Main/src-all/
H A DQMTranslatorImpl.cpp260 enum SectionType enum in class:QMTranslator_Impl
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Guid/
H A DCper.h213 EFI_GUID SectionType; member in struct:__anon11315
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/IndustryStandard/
H A DAcpi40.h707 UINT8 SectionType[16]; member in struct:__anon11485
H A DAcpi50.h1371 UINT8 SectionType[16]; member in struct:__anon11570

Completed in 113 milliseconds