Searched defs:MaximumVariableSize (Results 1 - 6 of 6) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Include/Guid/
H A DSmmVariableCommon.h100 UINT64 MaximumVariableSize; member in struct:__anon11019
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Variable/EmuRuntimeDxe/
H A DEmuVariable.c1456 @param MaximumVariableSize Returns the maximum size of an individual EFI variable
1464 MaximumVariableSize are undefined.
1473 OUT UINT64 *MaximumVariableSize,
1487 if(MaximumVariableStorageSize == NULL || RemainingVariableStorageSize == NULL || MaximumVariableSize == NULL || Attributes == 0) {
1543 *MaximumVariableSize = PcdGet32 (PcdMaxHardwareErrorVariableSize) - sizeof (VARIABLE_HEADER);
1551 // Let *MaximumVariableSize be PcdGet32 (PcdMaxVariableSize) with the exception of the variable header size.
1553 *MaximumVariableSize = PcdGet32 (PcdMaxVariableSize) - sizeof (VARIABLE_HEADER);
1590 *MaximumVariableSize = 0;
1591 } else if ((*RemainingVariableStorageSize - sizeof (VARIABLE_HEADER)) < *MaximumVariableSize) {
1592 *MaximumVariableSize
1469 EmuQueryVariableInfo( IN UINT32 Attributes, OUT UINT64 *MaximumVariableStorageSize, OUT UINT64 *RemainingVariableStorageSize, OUT UINT64 *MaximumVariableSize, IN VARIABLE_GLOBAL *Global ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/VBoxVariable/
H A DEmuVariable.c1495 @param MaximumVariableSize Returns the maximum size of an individual EFI variable
1503 MaximumVariableSize are undefined.
1512 OUT UINT64 *MaximumVariableSize,
1526 if(MaximumVariableStorageSize == NULL || RemainingVariableStorageSize == NULL || MaximumVariableSize == NULL || Attributes == 0) {
1582 *MaximumVariableSize = PcdGet32 (PcdMaxHardwareErrorVariableSize) - sizeof (VARIABLE_HEADER);
1590 // Let *MaximumVariableSize be PcdGet32 (PcdMaxVariableSize) with the exception of the variable header size.
1592 *MaximumVariableSize = PcdGet32 (PcdMaxVariableSize) - sizeof (VARIABLE_HEADER);
1629 *MaximumVariableSize = 0;
1630 } else if ((*RemainingVariableStorageSize - sizeof (VARIABLE_HEADER)) < *MaximumVariableSize) {
1631 *MaximumVariableSize
1508 EmuQueryVariableInfo( IN UINT32 Attributes, OUT UINT64 *MaximumVariableStorageSize, OUT UINT64 *RemainingVariableStorageSize, OUT UINT64 *MaximumVariableSize, IN VARIABLE_GLOBAL *Global ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/PlatformDriOverrideDxe/
H A DPlatDriOverrideLib.c621 // Each variable has MaximumVariableSize limitation, so we maybe need multiple variables to store
931 UINT64 MaximumVariableSize; local
950 &MaximumVariableSize
957 // Try to find the most proper variable size which <= MaximumVariableSize,
969 // If the total size exceeds the MaximumVariableSize, then we must use
976 ) >= MaximumVariableSize
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IpSecDxe/
H A DIpSecConfigImpl.c2320 UINT64 MaximumVariableSize; local
2326 &MaximumVariableSize
2347 MaximumVariableSize -= VariableNameSize;
2349 IpSecVariableInfo.VariableCount = (UINT32) ((DataSize + (UINTN) MaximumVariableSize - 1) / (UINTN) MaximumVariableSize);
2351 IpSecVariableInfo.SingleVariableSize = (UINT32) MaximumVariableSize;
2380 (DataSize % (UINTN) MaximumVariableSize) :
2381 (UINTN) MaximumVariableSize,
2382 (UINT8 *) Data + VariableIndex * (UINTN) MaximumVariableSize
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/VariableAuthenticated/EsalVariableDxeSal/
H A DVariable.c2721 @param[out] MaximumVariableSize Returns the maximum size of an individual EFI variable
2730 MaximumVariableSize are undefined.
2738 OUT UINT64 *MaximumVariableSize,
2758 if(MaximumVariableStorageSize == NULL || RemainingVariableStorageSize == NULL || MaximumVariableSize == NULL || Attributes == 0) {
2815 *MaximumVariableSize = PcdGet32(PcdMaxHardwareErrorVariableSize) - sizeof (VARIABLE_HEADER);
2823 // Let *MaximumVariableSize be PcdGet32(PcdMaxVariableSize) with the exception of the variable header size.
2825 *MaximumVariableSize = PcdGet32(PcdMaxVariableSize) - sizeof (VARIABLE_HEADER);
2880 *MaximumVariableSize = 0;
2881 } else if ((*RemainingVariableStorageSize - sizeof (VARIABLE_HEADER)) < *MaximumVariableSize) {
2882 *MaximumVariableSize
2734 EsalQueryVariableInfo( IN UINT32 Attributes, OUT UINT64 *MaximumVariableStorageSize, OUT UINT64 *RemainingVariableStorageSize, OUT UINT64 *MaximumVariableSize, IN BOOLEAN VirtualMode, IN ESAL_VARIABLE_GLOBAL *Global ) argument
[all...]

Completed in 71 milliseconds