MCPcopy Create free account
hub / github.com/CloverHackyColor/CloverBootloader / EfiGetInfo

Function EfiGetInfo

BaseTools/Source/C/Common/Decompress.c:814–842  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

812}
813
814EFI_STATUS
815EfiGetInfo (
816 IN VOID *Source,
817 IN UINT32 SrcSize,
818 OUT UINT32 *DstSize,
819 OUT UINT32 *ScratchSize
820 )
821/*++
822
823Routine Description:
824
825 The implementation Efi Decompress GetInfo().
826
827Arguments:
828
829 Source - The source buffer containing the compressed data.
830 SrcSize - The size of source buffer
831 DstSize - The size of destination buffer.
832 ScratchSize - The size of scratch buffer.
833
834Returns:
835
836 EFI_SUCCESS - The size of destination buffer and the size of scratch buffer are successfully retrieved.
837 EFI_INVALID_PARAMETER - The source data is corrupted
838
839--*/
840{
841 return GetInfo (Source, SrcSize, DstSize, ScratchSize);
842}
843
844EFI_STATUS
845TianoGetInfo (

Callers 1

ExtractFunction · 0.70

Calls 1

GetInfoFunction · 0.70

Tested by

no test coverage detected