Searched defs:Decompress (Results 1 - 11 of 11) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Ppi/
H A DDecompress.h27 Decompress a single compression section in a firmware file.
68 EFI_PEI_DECOMPRESS_DECOMPRESS Decompress; member in struct:_EFI_PEI_DECOMPRESS_PPI
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DDecompress.h2 The Decompress Protocol Interface as defined in UEFI spec
69 The Decompress() function extracts decompressed data to its original form.
73 Decompress() function is not allowed to call AllocatePool() or
117 EFI_DECOMPRESS_DECOMPRESS Decompress; member in struct:_EFI_DECOMPRESS_PROTOCOL
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DEfiDecompress.c16 #include <Protocol/Decompress.h>
48 EFI_DECOMPRESS_PROTOCOL *Decompress; local
130 Status = gBS->LocateProtocol(&gEfiDecompressProtocolGuid, NULL, (VOID**)&Decompress);
133 Status = Decompress->GetInfo(Decompress, InBuffer, (UINT32)InSize, &OutSize, &ScratchSize);
141 Status = Decompress->Decompress(Decompress, InBuffer, (UINT32)InSize, OutBuffer, OutSize, ScratchBuffer, ScratchSize);
H A DLoadPciRom.c19 #include <Protocol/Decompress.h>
223 EFI_DECOMPRESS_PROTOCOL *Decompress; local
285 Status = gBS->LocateProtocol (&gEfiDecompressProtocolGuid, NULL, (VOID**)&Decompress);
291 Status = Decompress->GetInfo (
292 Decompress,
303 Status = Decompress->Decompress (
304 Decompress,
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Pci/PciBusDxe/
H A DPciOptionRomSupport.c55 EFI_DECOMPRESS_PROTOCOL *Decompress; local
115 Status = gBS->LocateProtocol (&gEfiDecompressProtocolGuid, NULL, (VOID **) &Decompress);
119 Status = Decompress->GetInfo (
120 Decompress,
141 Status = Decompress->Decompress (
142 Decompress,
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/DxeIplPeim/
H A DDxeLoad.c32 Decompress
57 This function installs DXE IPL PPI and Decompress PPI. It also reloads
119 // Install DxeIpl and Decompress PPIs.
506 Decompress ( function
560 DEBUG ((DEBUG_ERROR, "Decompress GetInfo Failed - %r\n", Status));
592 // Decompress failed
594 DEBUG ((DEBUG_ERROR, "Decompress Failed - %r\n", Status));
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/SectionExtractionDxe/
H A DSectionExtraction.c48 #include <Protocol/Decompress.h>
678 EFI_DECOMPRESS_PROTOCOL *Decompress; local
767 // Decompress the stream
769 Status = gBS->LocateProtocol (&gEfiDecompressProtocolGuid, NULL, (VOID **)&Decompress);
773 Status = Decompress->GetInfo (
774 Decompress,
796 Status = Decompress->Decompress (
797 Decompress,
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Dxe/SectionExtraction/
H A DCoreSectionExtraction.c629 EFI_DECOMPRESS_PROTOCOL *Decompress; local
718 // Decompress the stream
720 Status = CoreLocateProtocol (&gEfiDecompressProtocolGuid, NULL, (VOID **)&Decompress);
722 ASSERT (Decompress != NULL);
724 Status = Decompress->GetInfo (
725 Decompress,
747 Status = Decompress->Decompress (
748 Decompress,
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DDecompress.c14 Decompress.c
25 #include "Decompress.h"
704 Decompress ( function
716 The implementation Efi and Tiano Decompress().
784 // Decompress it
809 The implementation Efi Decompress GetInfo().
839 The implementation Tiano Decompress GetInfo().
871 The implementation of Efi Decompress().
890 return Decompress (Source, SrcSize, Destination, DstSize, Scratch, ScratchSize);
906 The implementation of Tiano Decompress()
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/OvmfPkg/Library/PlatformBdsLib/
H A DBdsPlatform.c1699 EFI_DECOMPRESS_PROTOCOL *Decompress; local
1764 Status = gBS->LocateProtocol (&gEfiDecompressProtocolGuid, NULL, (VOID **) &Decompress);
1769 Status = Decompress->GetInfo (
1770 Decompress,
1782 Status = Decompress->Decompress (
1783 Decompress,
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/TianoCompress/
H A DTianoCompress.c1990 Status = Decompress((VOID *)FileBuffer, (VOID *)OutBuffer, (VOID *)Scratch, 2);
2618 Decompress ( function
2628 The internal implementation of Decompress().
2635 Version - 1 for EFI1.1 Decompress algoruthm, 2 for Tiano Decompress algorithm
2703 // Decompress it

Completed in 67 milliseconds