Searched defs:InfoSize (Results 1 - 9 of 9) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/UserIdentification/UserProfileManagerDxe/
H A DUserProfileDelete.c33 UINTN InfoSize; local
51 InfoSize = MemSize;
69 &InfoSize
72 MemSize = InfoSize;
82 &InfoSize
90 NameLen = Info->InfoSize - sizeof (EFI_USER_INFO);
190 UINTN InfoSize; local
218 InfoSize = 0;
220 Status = mUserManager->GetInfo (mUserManager, User, UserInfo, Info, &InfoSize);
222 Info = AllocateZeroPool (InfoSize);
[all...]
H A DUserProfileModify.c117 UINTN InfoSize; local
165 InfoSize = MemSize;
171 &InfoSize
174 MemSize = InfoSize;
186 &InfoSize
194 DataLen = Info->InfoSize - sizeof (EFI_USER_INFO);
771 UINTN InfoSize; local
799 InfoSize = MemSize;
805 &InfoSize
808 MemSize = InfoSize;
1392 UINTN InfoSize; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Variable/RuntimeDxe/
H A DVariableSmm.c248 @param[in, out] InfoSize On input, the size of the variable information buffer.
260 IN OUT UINTN *InfoSize
275 if (*InfoSize < sizeof (VARIABLE_INFO_ENTRY)) {
276 *InfoSize = StatisticsInfoSize;
287 *InfoSize = StatisticsInfoSize;
311 *InfoSize = 0;
319 if (*InfoSize < StatisticsInfoSize) {
320 *InfoSize = StatisticsInfoSize;
326 *InfoSize = StatisticsInfoSize;
367 UINTN InfoSize; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Guid/
H A DImageAuthentication.h246 UINT32 InfoSize; member in struct:__anon11350
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/Library/DxeDeferImageLoadLib/
H A DDxeDeferImageLoadLib.c179 UINTN InfoSize; local
202 InfoSize = 0;
217 &InfoSize
223 Info = AllocateZeroPool (InfoSize);
230 &InfoSize
247 while (CheckLen < Info->InfoSize - sizeof (EFI_USER_INFO)) {
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/VariableAuthenticated/RuntimeDxe/
H A DVariableSmm.c248 @param[in, out] InfoSize On input, the size of the variable information buffer.
261 IN OUT UINTN *InfoSize
279 if (*InfoSize < sizeof (VARIABLE_INFO_ENTRY)) {
280 *InfoSize = StatisticsInfoSize;
291 *InfoSize = StatisticsInfoSize;
315 *InfoSize = 0;
323 if (*InfoSize < StatisticsInfoSize) {
324 *InfoSize = StatisticsInfoSize;
330 *InfoSize = StatisticsInfoSize;
373 UINTN InfoSize; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/HiiDatabaseDxe/
H A DFont.c973 UINTN InfoSize; local
985 InfoSize = sizeof (EFI_FONT_DISPLAY_INFO) - sizeof (CHAR16) + StrSize (L"sysdefault");
986 Info = (EFI_FONT_DISPLAY_INFO *) AllocateZeroPool (InfoSize);
1000 *FontInfoSize = InfoSize;
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Include/Protocol/
H A DUserManager.h75 UINT32 InfoSize; member in struct:__anon12385
426 If InfoSize is 0, then the user information record must be empty.
428 @param[in] InfoSize The size of Info, in bytes.
442 IN UINTN InfoSize
486 @param[out] Info On entry, points to a buffer of at least *InfoSize bytes. On exit, holds the user
488 EFI_BUFFER_TOO_SMALL is returned and InfoSize is updated to contain the
490 @param[in,out] InfoSize On entry, points to the size of Info. On return, points to the size of the user
495 @retval EFI_BUFFER_TOO_SMALL The number of bytes specified by *InfoSize is too small to hold
496 the returned data. The actual size required is returned in *InfoSize.
499 @retval EFI_INVALID_PARAMETER Info is NULL or InfoSize i
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/UserIdentification/UserIdentifyManagerDxe/
H A DUserIdentifyManager.c207 InfoLen += ALIGN_VARIABLE (UserInfo->InfoSize);
216 InfoLen += ALIGN_VARIABLE (UserInfo->InfoSize);
301 InfoLen += ALIGN_VARIABLE (UserInfo->InfoSize);
325 @param[in] InfoSize The size of Info, in bytes. Same as Info->InfoSize.
330 @retval EFI_INVALID_PARAMETER User is NULL; Info is NULL; or, InfoSize is too small.
338 IN UINTN InfoSize
349 if (InfoSize < sizeof (EFI_USER_INFO)) {
380 if (InfoSize == Info->InfoSize) {
1029 AddUserInfo( IN USER_PROFILE_ENTRY *User, IN UINT8 *Info, IN UINTN InfoSize, OUT EFI_USER_INFO **UserInfo, OPTIONAL IN BOOLEAN Save ) argument
1101 GetUserInfo( IN USER_PROFILE_ENTRY *User, IN EFI_USER_INFO *UserInfo, OUT EFI_USER_INFO *Info, IN OUT UINTN *InfoSize, IN BOOLEAN ChkRight ) argument
[all...]

Completed in 63 milliseconds