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

/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/
H A DGuidedSectionExtraction.c23 Examines a GUIDed section specified by InputSection.
24 If GUID for InputSection does not match the GUID that this handler supports,
26 If the required information can not be retrieved from InputSection,
28 If the GUID of InputSection does match the GUID that this handler supports,
31 from EFI_GUID_DEFINED_SECTION header of InputSection is returned in SectionAttribute.
33 If InputSection is NULL, then ASSERT().
39 @param[in] InputSection A pointer to a GUIDed section of an FFS formatted file.
41 if the buffer specified by InputSection were decoded.
43 if the buffer specified by InputSection were decoded.
47 @retval RETURN_SUCCESS The information about InputSection wa
54 LzmaGuidedSectionGetInfo( IN CONST VOID *InputSection, OUT UINT32 *OutputBufferSize, OUT UINT32 *ScratchBufferSize, OUT UINT16 *SectionAttribute ) argument
134 LzmaGuidedSectionExtraction( IN CONST VOID *InputSection, OUT VOID **OutputBuffer, OUT VOID *ScratchBuffer, OPTIONAL OUT UINT32 *AuthenticationStatus ) argument
[all...]
H A DF86GuidedSectionExtraction.c25 Examines a GUIDed section specified by InputSection.
26 If GUID for InputSection does not match the GUID that this handler supports,
28 If the required information can not be retrieved from InputSection,
30 If the GUID of InputSection does match the GUID that this handler supports,
33 from EFI_GUID_DEFINED_SECTION header of InputSection is returned in SectionAttribute.
35 If InputSection is NULL, then ASSERT().
41 @param[in] InputSection A pointer to a GUIDed section of an FFS formatted file.
43 if the buffer specified by InputSection were decoded.
45 if the buffer specified by InputSection were decoded.
49 @retval RETURN_SUCCESS The information about InputSection wa
56 LzmaArchGuidedSectionGetInfo( IN CONST VOID *InputSection, OUT UINT32 *OutputBufferSize, OUT UINT32 *ScratchBufferSize, OUT UINT16 *SectionAttribute ) argument
136 LzmaArchGuidedSectionExtraction( IN CONST VOID *InputSection, OUT VOID **OutputBuffer, OUT VOID *ScratchBuffer, OPTIONAL OUT UINT32 *AuthenticationStatus ) argument
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/
H A DGuidedSectionExtraction.c23 Examines a GUIDed section specified by InputSection.
24 If GUID for InputSection does not match the GUID that this handler supports,
26 If the required information can not be retrieved from InputSection,
28 If the GUID of InputSection does match the GUID that this handler supports,
31 from EFI_GUID_DEFINED_SECTION header of InputSection is returned in SectionAttribute.
33 If InputSection is NULL, then ASSERT().
39 @param[in] InputSection A pointer to a GUIDed section of an FFS formatted file.
41 if the buffer specified by InputSection were decoded.
43 if the buffer specified by InputSection were decoded.
47 @retval RETURN_SUCCESS The information about InputSection wa
54 LzmaGuidedSectionGetInfo( IN CONST VOID *InputSection, OUT UINT32 *OutputBufferSize, OUT UINT32 *ScratchBufferSize, OUT UINT16 *SectionAttribute ) argument
134 LzmaGuidedSectionExtraction( IN CONST VOID *InputSection, OUT VOID **OutputBuffer, OUT VOID *ScratchBuffer, OPTIONAL OUT UINT32 *AuthenticationStatus ) argument
[all...]
H A DF86GuidedSectionExtraction.c25 Examines a GUIDed section specified by InputSection.
26 If GUID for InputSection does not match the GUID that this handler supports,
28 If the required information can not be retrieved from InputSection,
30 If the GUID of InputSection does match the GUID that this handler supports,
33 from EFI_GUID_DEFINED_SECTION header of InputSection is returned in SectionAttribute.
35 If InputSection is NULL, then ASSERT().
41 @param[in] InputSection A pointer to a GUIDed section of an FFS formatted file.
43 if the buffer specified by InputSection were decoded.
45 if the buffer specified by InputSection were decoded.
49 @retval RETURN_SUCCESS The information about InputSection wa
56 LzmaArchGuidedSectionGetInfo( IN CONST VOID *InputSection, OUT UINT32 *OutputBufferSize, OUT UINT32 *ScratchBufferSize, OUT UINT16 *SectionAttribute ) argument
136 LzmaArchGuidedSectionExtraction( IN CONST VOID *InputSection, OUT VOID **OutputBuffer, OUT VOID *ScratchBuffer, OPTIONAL OUT UINT32 *AuthenticationStatus ) argument
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/SectionExtractionPei/
H A DSectionExtractionPei.c38 @param InputSection A pointer to the input buffer, which contains
64 @retval EFI_SUCCESS The InputSection was
71 @retval EFI_INVALID_PARAMETER The GUID in InputSection does
80 IN CONST VOID *InputSection,
109 @param InputSection A pointer to the input buffer, which contains
135 @retval EFI_SUCCESS The InputSection was
142 @retval EFI_INVALID_PARAMETER The GUID in InputSection does
151 IN CONST VOID *InputSection,
172 InputSection,
210 InputSection,
149 CustomGuidedSectionExtract( IN CONST EFI_PEI_GUIDED_SECTION_EXTRACTION_PPI *This, IN CONST VOID *InputSection, OUT VOID **OutputBuffer, OUT UINTN *OutputSize, OUT UINT32 *AuthenticationStatus ) argument
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeCrc32GuidedSectionExtractLib/
H A DDxeCrc32GuidedSectionExtractLib.c45 @param InputSection Buffer containing the input GUIDed section to be processed.
52 @retval EFI_INVALID_PARAMETER The GUID in InputSection does not match this instance guid.
58 IN CONST VOID *InputSection,
64 if (IS_SECTION2 (InputSection)) {
70 &(((EFI_GUID_DEFINED_SECTION2 *) InputSection)->SectionDefinitionGuid))) {
76 *SectionAttribute = ((EFI_GUID_DEFINED_SECTION2 *) InputSection)->Attributes;
78 *OutputBufferSize = SECTION2_SIZE (InputSection) - ((EFI_GUID_DEFINED_SECTION2 *) InputSection)->DataOffset;
85 &(((EFI_GUID_DEFINED_SECTION *) InputSection)->SectionDefinitionGuid))) {
91 *SectionAttribute = ((EFI_GUID_DEFINED_SECTION *) InputSection)
57 Crc32GuidedSectionGetInfo( IN CONST VOID *InputSection, OUT UINT32 *OutputBufferSize, OUT UINT32 *ScratchBufferSize, OUT UINT16 *SectionAttribute ) argument
118 Crc32GuidedSectionHandler( IN CONST VOID *InputSection, OUT VOID **OutputBuffer, IN VOID *ScratchBuffer, OPTIONAL OUT UINT32 *AuthenticationStatus ) argument
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/SectionExtractionDxe/
H A DSectionExtractionDxe.c52 @param InputSection Buffer containing the input GUIDed section
92 @retval EFI_SUCCESS The InputSection was successfully
100 @retval EFI_INVALID_PARAMETER The GUID in InputSection does
110 IN CONST VOID *InputSection,
157 @param InputSection Buffer containing the input GUIDed section
197 @retval EFI_SUCCESS The InputSection was successfully
205 @retval EFI_INVALID_PARAMETER The GUID in InputSection does
215 IN CONST VOID *InputSection,
238 InputSection,
275 InputSection,
213 CustomGuidedSectionExtract( IN CONST EFI_GUIDED_SECTION_EXTRACTION_PROTOCOL *This, IN CONST VOID *InputSection, OUT VOID **OutputBuffer, OUT UINTN *OutputSize, OUT UINT32 *AuthenticationStatus ) argument
[all...]
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/PrePiExtractGuidedSectionLib/
H A DPrePiExtractGuidedSectionLib.c118 IN CONST VOID *InputSection,
127 if (InputSection == NULL) {
141 if (CompareGuid (&SavedData->ExtractHandlerGuidTable[Index], &(((EFI_GUID_DEFINED_SECTION *) InputSection)->SectionDefinitionGuid))) {
157 InputSection,
167 IN CONST VOID *InputSection,
176 if (InputSection == NULL) {
189 if (CompareGuid (&SavedData->ExtractHandlerGuidTable[Index], &(((EFI_GUID_DEFINED_SECTION *) InputSection)->SectionDefinitionGuid))) {
205 InputSection,
117 ExtractGuidedSectionGetInfo( IN CONST VOID *InputSection, OUT UINT32 *OutputBufferSize, OUT UINT32 *ScratchBufferSize, OUT UINT16 *SectionAttribute ) argument
166 ExtractGuidedSectionDecode( IN CONST VOID *InputSection, OUT VOID **OutputBuffer, OUT VOID *ScratchBuffer, OPTIONAL OUT UINT32 *AuthenticationStatus ) argument
/device/linaro/bootloader/edk2/MdeModulePkg/Library/PeiCrc32GuidedSectionExtractLib/
H A DPeiCrc32GuidedSectionExtractLib.c126 @param InputSection Buffer containing the input GUIDed section to be processed.
133 @retval EFI_INVALID_PARAMETER The GUID in InputSection does not match this instance guid.
139 IN CONST VOID *InputSection,
145 if (IS_SECTION2 (InputSection)) {
151 &(((EFI_GUID_DEFINED_SECTION2 *) InputSection)->SectionDefinitionGuid))) {
157 *SectionAttribute = ((EFI_GUID_DEFINED_SECTION2 *) InputSection)->Attributes;
159 *OutputBufferSize = SECTION2_SIZE (InputSection) - ((EFI_GUID_DEFINED_SECTION2 *) InputSection)->DataOffset;
166 &(((EFI_GUID_DEFINED_SECTION *) InputSection)->SectionDefinitionGuid))) {
172 *SectionAttribute = ((EFI_GUID_DEFINED_SECTION *) InputSection)
138 Crc32GuidedSectionGetInfo( IN CONST VOID *InputSection, OUT UINT32 *OutputBufferSize, OUT UINT32 *ScratchBufferSize, OUT UINT16 *SectionAttribute ) argument
199 Crc32GuidedSectionHandler( IN CONST VOID *InputSection, OUT VOID **OutputBuffer, IN VOID *ScratchBuffer, OPTIONAL OUT UINT32 *AuthenticationStatus ) argument
[all...]
/device/linaro/bootloader/edk2/MdePkg/Library/BaseExtractGuidedSectionLib/
H A DBaseExtractGuidedSectionLib.c230 Examines a GUIDed section specified by InputSection.
231 If GUID for InputSection does not match any of the GUIDs registered through ExtractGuidedSectionRegisterHandlers(),
233 If the GUID of InputSection does match the GUID that this handler supports, then the the associated handler
238 If InputSection is NULL, then ASSERT().
243 @param[in] InputSection A pointer to a GUIDed section of an FFS formatted file.
245 specified by InputSection were decoded.
247 InputSection were decoded.
252 @retval RETURN_UNSUPPORTED The GUID from the section specified by InputSection does not match any of
255 the section specified by InputSection.
261 IN CONST VOID *InputSection,
260 ExtractGuidedSectionGetInfo( IN CONST VOID *InputSection, OUT UINT32 *OutputBufferSize, OUT UINT32 *ScratchBufferSize, OUT UINT16 *SectionAttribute ) argument
355 ExtractGuidedSectionDecode( IN CONST VOID *InputSection, OUT VOID **OutputBuffer, IN VOID *ScratchBuffer, OPTIONAL OUT UINT32 *AuthenticationStatus ) argument
[all...]
/device/linaro/bootloader/edk2/MdePkg/Library/DxeExtractGuidedSectionLib/
H A DDxeExtractGuidedSectionLib.c236 Examines a GUIDed section specified by InputSection.
237 If GUID for InputSection does not match any of the GUIDs registered through ExtractGuidedSectionRegisterHandlers(),
239 If the GUID of InputSection does match the GUID that this handler supports, then the the associated handler
244 If InputSection is NULL, then ASSERT().
249 @param[in] InputSection A pointer to a GUIDed section of an FFS formatted file.
251 specified by InputSection were decoded.
253 InputSection were decoded.
258 @retval RETURN_UNSUPPORTED The GUID from the section specified by InputSection does not match any of
261 the section specified by InputSection.
267 IN CONST VOID *InputSection,
266 ExtractGuidedSectionGetInfo( IN CONST VOID *InputSection, OUT UINT32 *OutputBufferSize, OUT UINT32 *ScratchBufferSize, OUT UINT16 *SectionAttribute ) argument
347 ExtractGuidedSectionDecode( IN CONST VOID *InputSection, OUT VOID **OutputBuffer, IN VOID *ScratchBuffer, OPTIONAL OUT UINT32 *AuthenticationStatus ) argument
[all...]
/device/linaro/bootloader/edk2/MdePkg/Library/PeiExtractGuidedSectionLib/
H A DPeiExtractGuidedSectionLib.c265 Examines a GUIDed section specified by InputSection.
266 If GUID for InputSection does not match any of the GUIDs registered through ExtractGuidedSectionRegisterHandlers(),
268 If the GUID of InputSection does match the GUID that this handler supports, then the the associated handler
273 If InputSection is NULL, then ASSERT().
278 @param[in] InputSection A pointer to a GUIDed section of an FFS formatted file.
280 specified by InputSection were decoded.
282 InputSection were decoded.
287 @retval RETURN_UNSUPPORTED The GUID from the section specified by InputSection does not match any of
290 the section specified by InputSection.
296 IN CONST VOID *InputSection,
295 ExtractGuidedSectionGetInfo( IN CONST VOID *InputSection, OUT UINT32 *OutputBufferSize, OUT UINT32 *ScratchBufferSize, OUT UINT16 *SectionAttribute ) argument
390 ExtractGuidedSectionDecode( IN CONST VOID *InputSection, OUT VOID **OutputBuffer, IN VOID *ScratchBuffer, OPTIONAL OUT UINT32 *AuthenticationStatus ) argument
[all...]
/device/linaro/bootloader/edk2/SecurityPkg/Library/DxeRsa2048Sha256GuidedSectionExtractLib/
H A DDxeRsa2048Sha256GuidedSectionExtractLib.c56 @param InputSection Buffer containing the input GUIDed section to be processed.
63 @retval EFI_INVALID_PARAMETER The GUID in InputSection does not match this instance guid.
69 IN CONST VOID *InputSection,
75 if (IS_SECTION2 (InputSection)) {
81 &(((EFI_GUID_DEFINED_SECTION2 *) InputSection)->SectionDefinitionGuid))) {
87 *SectionAttribute = ((EFI_GUID_DEFINED_SECTION2 *) InputSection)->Attributes;
89 *OutputBufferSize = SECTION2_SIZE (InputSection) - sizeof(RSA_2048_SHA_256_SECTION2_HEADER);
96 &(((EFI_GUID_DEFINED_SECTION *) InputSection)->SectionDefinitionGuid))) {
102 *SectionAttribute = ((EFI_GUID_DEFINED_SECTION *) InputSection)->Attributes;
104 *OutputBufferSize = SECTION_SIZE (InputSection)
68 Rsa2048Sha256GuidedSectionGetInfo( IN CONST VOID *InputSection, OUT UINT32 *OutputBufferSize, OUT UINT32 *ScratchBufferSize, OUT UINT16 *SectionAttribute ) argument
129 Rsa2048Sha256GuidedSectionHandler( IN CONST VOID *InputSection, OUT VOID **OutputBuffer, IN VOID *ScratchBuffer, OPTIONAL OUT UINT32 *AuthenticationStatus ) argument
[all...]
/device/linaro/bootloader/edk2/SecurityPkg/Library/PeiRsa2048Sha256GuidedSectionExtractLib/
H A DPeiRsa2048Sha256GuidedSectionExtractLib.c54 @param InputSection Buffer containing the input GUIDed section to be processed.
61 @retval EFI_INVALID_PARAMETER The GUID in InputSection does not match this instance guid.
67 IN CONST VOID *InputSection,
73 if (IS_SECTION2 (InputSection)) {
79 &(((EFI_GUID_DEFINED_SECTION2 *) InputSection)->SectionDefinitionGuid))) {
85 *SectionAttribute = ((EFI_GUID_DEFINED_SECTION2 *) InputSection)->Attributes;
87 *OutputBufferSize = SECTION2_SIZE (InputSection) - sizeof(RSA_2048_SHA_256_SECTION2_HEADER);
94 &(((EFI_GUID_DEFINED_SECTION *) InputSection)->SectionDefinitionGuid))) {
100 *SectionAttribute = ((EFI_GUID_DEFINED_SECTION *) InputSection)->Attributes;
102 *OutputBufferSize = SECTION_SIZE (InputSection)
66 Rsa2048Sha256GuidedSectionGetInfo( IN CONST VOID *InputSection, OUT UINT32 *OutputBufferSize, OUT UINT32 *ScratchBufferSize, OUT UINT16 *SectionAttribute ) argument
127 Rsa2048Sha256GuidedSectionHandler( IN CONST VOID *InputSection, OUT VOID **OutputBuffer, IN VOID *ScratchBuffer, OPTIONAL OUT UINT32 *AuthenticationStatus ) argument
[all...]
/device/linaro/bootloader/edk2/IntelFspPkg/FspDxeIpl/
H A DDxeIpl.c122 @param[in] InputSection A pointer to the input buffer, which contains
148 @retval EFI_SUCCESS The InputSection was
155 @retval EFI_INVALID_PARAMETER The GUID in InputSection does
164 IN CONST VOID *InputSection,
185 InputSection,
223 InputSection,
162 CustomGuidedSectionExtract( IN CONST EFI_PEI_GUIDED_SECTION_EXTRACTION_PPI *This, IN CONST VOID *InputSection, OUT VOID **OutputBuffer, OUT UINTN *OutputSize, OUT UINT32 *AuthenticationStatus ) argument
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/BaseUefiTianoCustomDecompressLib/
H A DBaseUefiTianoCustomDecompressLib.c856 Examines a GUIDed section specified by InputSection.
857 If GUID for InputSection does not match the GUID that this handler supports,
859 If the required information can not be retrieved from InputSection,
861 If the GUID of InputSection does match the GUID that this handler supports,
864 from EFI_GUID_DEFINED_SECTION header of InputSection is returned in SectionAttribute.
866 If InputSection is NULL, then ASSERT().
872 @param[in] InputSection A pointer to a GUIDed section of an FFS formatted file.
874 if the buffer specified by InputSection were decoded.
876 if the buffer specified by InputSection were decoded.
880 @retval RETURN_SUCCESS The information about InputSection wa
887 TianoDecompressGetInfo( IN CONST VOID *InputSection, OUT UINT32 *OutputBufferSize, OUT UINT32 *ScratchBufferSize, OUT UINT16 *SectionAttribute ) argument
979 TianoDecompress( IN CONST VOID *InputSection, OUT VOID **OutputBuffer, IN VOID *ScratchBuffer, OPTIONAL OUT UINT32 *AuthenticationStatus ) argument
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Core/DxeIplPeim/
H A DDxeLoad.c508 @param InputSection A pointer to the input buffer, which contains
534 @retval EFI_SUCCESS The InputSection was
541 @retval EFI_INVALID_PARAMETER The GUID in InputSection does
550 IN CONST VOID *InputSection,
571 InputSection,
609 InputSection,
548 CustomGuidedSectionExtract( IN CONST EFI_PEI_GUIDED_SECTION_EXTRACTION_PPI *This, IN CONST VOID *InputSection, OUT VOID **OutputBuffer, OUT UINTN *OutputSize, OUT UINT32 *AuthenticationStatus ) argument
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/SectionExtraction/
H A DCoreSectionExtraction.c131 @param InputSection Buffer containing the input GUIDed section
171 @retval EFI_SUCCESS The InputSection was successfully
179 @retval EFI_INVALID_PARAMETER The GUID in InputSection does
189 IN CONST VOID *InputSection,
1446 @param InputSection Buffer containing the input GUIDed section
1486 @retval EFI_SUCCESS The InputSection was successfully
1494 @retval EFI_INVALID_PARAMETER The GUID in InputSection does
1504 IN CONST VOID *InputSection,
1527 InputSection,
1564 InputSection,
1502 CustomGuidedSectionExtract( IN CONST EFI_GUIDED_SECTION_EXTRACTION_PROTOCOL *This, IN CONST VOID *InputSection, OUT VOID **OutputBuffer, OUT UINTN *OutputSize, OUT UINT32 *AuthenticationStatus ) argument
[all...]

Completed in 228 milliseconds