HomeSort by relevance Sort by last modified time
    Searched refs:Decompress (Results 1 - 25 of 61) sorted by null

1 2 3

  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/Decompress/
Decompress.c 14 Decompress.c
18 The GUID for the EFI Decompress Protocol
23 #include EFI_PROTOCOL_DEFINITION (Decompress)
27 EFI_GUID_STRING(&gEfiDecompressProtocolGuid, "Decompress", "Decompression Protocol");
Decompress.h 14 Decompress.h
18 The Decompress Protocol Interface
47 and the temporary scratch buffer required to decompress the buffer
70 is required to decompress the compressed buffer specified by
97 The Decompress() function extracts decompressed data to its original form.
101 Decompress() function is not allowed to call AllocatePool() or
135 EFI_DECOMPRESS_DECOMPRESS Decompress;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Framework/Ppi/Decompress/
Decompress.c 14 Decompress.c
24 #include EFI_PPI_DEFINITION (Decompress)
Decompress.h 14 Decompress.h
42 EFI_PEI_DECOMPRESS_DECOMPRESS Decompress;
  /device/linaro/bootloader/edk2/MdePkg/Include/Ppi/
Decompress.h 27 Decompress a single compression section in a firmware file.
38 @param OutputSize Holds the returned size of the decompress
68 EFI_PEI_DECOMPRESS_DECOMPRESS Decompress;
  /device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
GNUmakefile 25 Decompress.o \
Makefile 24 Decompress.obj \
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
EfiDecompress.c 17 #include <Protocol/Decompress.h>
21 Function for 'decompress' command.
49 EFI_DECOMPRESS_PROTOCOL *Decompress;
126 Status = gBS->LocateProtocol(&gEfiDecompressProtocolGuid, NULL, (VOID**)&Decompress);
129 Status = Decompress->GetInfo(Decompress, InBuffer, (UINT32)InSize, &OutSize, &ScratchSize);
144 Status = Decompress->Decompress(Decompress, InBuffer, (UINT32)InSize, OutBuffer, OutSize, ScratchBuffer, ScratchSize);
LoadPciRom.c 20 #include <Protocol/Decompress.h>
224 EFI_DECOMPRESS_PROTOCOL *Decompress;
278 // decompress here if needed
286 Status = gBS->LocateProtocol (&gEfiDecompressProtocolGuid, NULL, (VOID**)&Decompress);
292 Status = Decompress->GetInfo (
293 Decompress,
304 Status = Decompress->Decompress (
305 Decompress,
  /device/linaro/bootloader/edk2/DuetPkg/DxeIpl/
DxeIpl.h 38 #include <Protocol/Decompress.h>
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Protocol/CustomizedDecompress/
CustomizedDecompress.h 18 The user Customized Decompress Protocol Interface
44 and the temporary scratch buffer required to decompress the buffer
67 is required to decompress the compressed buffer specified by
95 The Decompress() function extracts decompressed data to its original form.
99 Decompress() function is not allowed to call AllocatePool() or
134 EFI_CUSTOMIZED_DECOMPRESS_DECOMPRESS Decompress;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Protocol/TianoDecompress/
TianoDecompress.h 18 The Tiano Decompress Protocol Interface
44 and the temporary scratch buffer required to decompress the buffer
67 is required to decompress the compressed buffer specified by
95 The Decompress() function extracts decompressed data to its original form.
99 Decompress() function is not allowed to call AllocatePool() or
134 EFI_TIANO_DECOMPRESS_DECOMPRESS Decompress;
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
Decompress.h 2 The Decompress Protocol Interface as defined in UEFI spec
27 and the temporary scratch buffer required to decompress the buffer
48 is required to decompress the compressed buffer specified by
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;
  /device/linaro/bootloader/edk2/IntelFspPkg/FspDxeIpl/
DxeIpl.h 21 #include <Ppi/Decompress.h>
175 @param[out] OutputSize Holds the returned size of the decompress
185 Decompress (
DxeIpl.c 30 Decompress
55 This function installs DXE IPL PPI and Decompress PPI. It also reloads
98 // Install DxeIpl and Decompress PPIs.
255 @param[out] OutputSize Holds the returned size of the decompress
265 Decompress (
306 // For compressed data, decompress them to destination buffer.
318 DEBUG ((DEBUG_ERROR, "Decompress GetInfo Failed - %r\n", Status));
341 // Call decompress function
350 // Decompress failed
352 DEBUG ((DEBUG_ERROR, "Decompress Failed - %r\n", Status));
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/DxeIplPeim/
DxeIpl.h 24 #include <Ppi/Decompress.h>
208 @param OutputSize Holds the returned size of the decompress
218 Decompress (
  /device/linaro/bootloader/edk2/DuetPkg/PciBusNoEnumerationDxe/
PciOptionRomSupport.c 430 EFI_DECOMPRESS_PROTOCOL *Decompress;
476 // decompress here if needed
484 Status = gBS->LocateProtocol (&gEfiDecompressProtocolGuid, NULL, (VOID **) &Decompress);
489 Status = Decompress->GetInfo (
490 Decompress,
502 Status = Decompress->Decompress (
503 Decompress,
PciRomTable.c 135 EFI_DECOMPRESS_PROTOCOL *Decompress;
196 // decompress here if needed
204 Status = gBS->LocateProtocol (&gEfiDecompressProtocolGuid, NULL, (VOID **) &Decompress);
209 Status = Decompress->GetInfo (
210 Decompress,
222 Status = Decompress->Decompress (
223 Decompress,
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
PciOptionRomSupport.c 33 @retval EFI_DEVICE_ERROR Failed to decompress PCI Option Rom image.
55 EFI_DECOMPRESS_PROTOCOL *Decompress;
115 Status = gBS->LocateProtocol (&gEfiDecompressProtocolGuid, NULL, (VOID **) &Decompress);
119 Status = Decompress->GetInfo (
120 Decompress,
141 Status = Decompress->Decompress (
142 Decompress,
194 @retval EFI_DEVICE_ERROR Failed to decompress PCI Option Rom image.
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/Common/
Makefile 47 "$(EDK_TOOLS_OUTPUT)\Decompress.obj" \
79 "$(EDK_TOOLS_OUTPUT)\Decompress.obj": "$(TARGET_SOURCE_DIR)\Decompress.c" "$(TARGET_SOURCE_DIR)\Decompress.h" $(EDK_SOURCE)\Foundation\Include\TianoCommon.h
80 $(CC) $(C_FLAGS) "$(TARGET_SOURCE_DIR)\Decompress.c" /Fo"$(EDK_TOOLS_OUTPUT)\Decompress.obj"
141 @if exist $(EDK_TOOLS_OUTPUT)\Decompress.* del /q $(EDK_TOOLS_OUTPUT)\Decompress.* > NUL
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
compressapi.h 52 WINBOOL WINAPI Decompress (DECOMPRESSOR_HANDLE DecompressorHandle, PVOID CompressedData, SIZE_T CompressedDataSize, PVOID UncompressedBuffer, SIZE_T UncompressedBufferSize, PSIZE_T UncompressedDataSize);
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Include/
EdkIIGlueUefi.h 81 #include EFI_PROTOCOL_DEFINITION(Decompress)
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Universal/SectionExtractionDxe/
SectionExtraction.c 49 #include <Protocol/Decompress.h>
731 EFI_DECOMPRESS_PROTOCOL *Decompress;
820 // Decompress the stream
822 Status = gBS->LocateProtocol (&gEfiDecompressProtocolGuid, NULL, (VOID **)&Decompress);
826 Status = Decompress->GetInfo (
827 Decompress,
849 Status = Decompress->Decompress (
850 Decompress,
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/SectionExtraction/
CoreSectionExtraction.c 682 EFI_DECOMPRESS_PROTOCOL *Decompress;
771 // Decompress the stream
773 Status = CoreLocateProtocol (&gEfiDecompressProtocolGuid, NULL, (VOID **)&Decompress);
775 ASSERT (Decompress != NULL);
777 Status = Decompress->GetInfo (
778 Decompress,
800 Status = Decompress->Decompress (
801 Decompress,
    [all...]
  /device/linaro/bootloader/edk2/BaseTools/Source/C/PyEfiCompressor/
EfiCompressor.c 16 #include <Decompress.h>
80 PyErr_SetString(PyExc_Exception, "Failed to decompress\n");
157 PyErr_SetString(PyExc_Exception, "Failed to decompress\n");
196 STATIC INT8 DecompressDocs[] = "Decompress(): Decompress data using UEFI standard algorithm\n";

Completed in 2401 milliseconds

1 2 3