2023年12月21日发(作者:)
│ │ ├── Recovery.h│ │ ├── Reg.h│ │ ├──ShutdownServices.h│ │ ├──StackCanary.h│ │ ├──UnlockMenu.h│ │ ├──UpdateCmdLine.h│ │ ├──UpdateDeviceTree.h│ │ └──VerifiedBootMenu.h│ └── Protocol│ ├── EFICardInfo.h│ ├── EFIChargerEx.h│ ├── EFIChipInfo.h│ ├── EFIChipInfoTypes.h│ ├── EFIEraseBlock.h│ ├── EFILimits.h│ ├── EFIMdtp.h│ ├── EFIPlatformInfo.h│ ├── EFIPlatformInfoTypes.h│ ├── EFIPmicPon.h│ ├── EFIPmicVersion.h│ ├── EFIQseecom.h│ ├── EFIRamPartition.h│ ├── EFIResetReason.h│ ├── EFIRng.h│ ├── EFIScmModeSwitch.h│ ├── EFIUsbDevice.h│ ├── EFIUsbEx.h│ ├── EFIVerifiedBoot.h│ └── UsbEx.h├── Library│ ├── BootLib│ │ ├── Board.c│ │ ├──│ │ ├──BootLinux.c│ │ ├──BootStats.c│ │ ├──Decompress.c│ │ ├──DeviceInfo.c│ │ ├── DrawUI.c│ │ ├──FastbootMenu.c│ │ ├── KeyPad.c│ │ ├──LinuxLoaderLib.c│ │ ├──LocateDeviceTree.c│ │ ├──MenuKeysDetection.c│ │ ├──PartitionTableUpdate.c│ │ ├── Recovery.c│ │ ├──ShutdownServices.c│ │ ├──UnlockMenu.c│ │ ├──UpdateCmdLine.c│ │ ├──UpdateDeviceTree.c│ │ └──VerifiedBootMenu.c│ ├── FastbootLib│ │ ├──FastbootCmds.c│ │ ├──FastbootCmds.h│ │ ├──│ │ ├──FastbootMain.c│ │ ├──FastbootMain.h│ │ ├──MetaFormat.h│ │ ├──SparseFormat.h│ │ ├──UsbDescriptors.c│ │ └──UsbDescriptors.h│ ├── StackCanary│ │ ├──StackCanary.c│ │ └──│ └── zlib│ ├── adler32.c│ ├── inffast.c│ ├── inffast.h│ ├── inffixed.h│ ├── inflate.c│ ├── inflate.h│ ├── inftrees.c│ ├── inftrees.h│ ├── zconf.h│ ├── zlib.h│ ├── │ ├── zutil.c│ └── zutil.h├──├──├──└── Tools ├── app_path_ ├── check_ ├── debug_
==============================================================================*//* ============================================================================** Function : EFI_RamPartition_GetRamPartitionVersion** ============================================================================*//** @ingroup efi_ramPartition_getRamVersion
@par Summary Gets the RAM Partition table version.
@param[in] This Pointer to the EFI_RAMPARTITION_PROTOCOL instance. @param[out] MajorVersion Pointer to UINT32 which returns RAM partition table version
@param[out] MinorVersion Pointer to UINT32 which returns RAM partition table version
@return EFI_SUCCESS -- Function completed successfully. n EFI_PROTOCOL_ERROR -- Error occurred during the operation.*/typedef
EFI_STATUS(EFIAPI *EFI_RAMPARTITION_GETRAMPARTITIONVERSION)( IN EFI_RAMPARTITION_PROTOCOL *This, OUT UINT32 *MajorVersion, OUT UINT32 *MinorVersion );/* ============================================================================** Function : EFI_RamPartition_GetHighestBankBit** ============================================================================*//** @ingroup efi_ramPartition_getHighestBankBit @par Summary Gets the RAM Partition table version.
@param[in] This Pointer to the EFI_RAMPARTITION_PROTOCOL instance. @param[out] HighestBankBit Pointer to Highest Bank Bit
@return EFI_SUCCESS -- Function completed successfully. n EFI_PROTOCOL_ERROR -- Error occurred during the operation.*/typedef
EFI_STATUS(EFIAPI *EFI_RAMPARTITION_GETHIGHESTBANKBIT)( IN EFI_RAMPARTITION_PROTOCOL *This, OUT UINT32 *HighestBankBit );/* ============================================================================** Function : EFI_RamPartition_GetMinPasrSize** ============================================================================*//** @ingroup EFI_RamPartition_GetMinPasrSize @par Summary Gets the MinPasrSize
@param[in] This Pointer to the EFI_RAMPARTITION_PROTOCOL instance. @param[out] MinPasrSize Pointer to MinPasrSize
@return EFI_SUCCESS -- Function completed successfully. n EFI_PROTOCOL_ERROR -- Error occurred during the operation.*/typedef
EFI_STATUS(EFIAPI *EFI_RAMPARTITION_GETMINPASRSIZE)( IN EFI_RAMPARTITION_PROTOCOL *This, OUT UINT32 *MinPasrSize );/* ============================================================================** Function : EFI_RamPartition_GetRamPartitions** ============================================================================*//** @ingroup efi_ramPartition_getRamPartitions @par Summary Gets the Ram version as read from the hardware register.
@param[in] This Pointer to the EFI_RAMPARTITION_PROTOCOL instance.


发布评论