HomeSort by relevance Sort by last modified time
    Searched defs:InfoSize (Results 1 - 13 of 13) sorted by null

  /device/linaro/bootloader/edk2/ArmPlatformPkg/Library/ArmShellCmdRunAxf/
BootMonFsLoader.c 50 UINTN InfoSize;
56 InfoSize = sizeof (Info);
59 &InfoSize, &Info);
114 UINTN InfoSize;
126 InfoSize = sizeof (Info);
128 &InfoSize, &Info);
  /device/linaro/bootloader/edk2/SecurityPkg/UserIdentification/UserProfileManagerDxe/
UserProfileDelete.c 33 UINTN InfoSize;
51 InfoSize = MemSize;
69 &InfoSize
72 MemSize = InfoSize;
82 &InfoSize
90 NameLen = Info->InfoSize - sizeof (EFI_USER_INFO);
190 UINTN InfoSize;
218 InfoSize = 0;
220 Status = mUserManager->GetInfo (mUserManager, User, UserInfo, Info, &InfoSize);
222 Info = AllocateZeroPool (InfoSize);
    [all...]
UserProfileModify.c 117 UINTN InfoSize;
165 InfoSize = MemSize;
171 &InfoSize
174 MemSize = InfoSize;
186 &InfoSize
194 DataLen = Info->InfoSize - sizeof (EFI_USER_INFO);
771 UINTN InfoSize;
799 InfoSize = MemSize;
805 &InfoSize
808 MemSize = InfoSize;
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
rtinfo.h 21 ULONG InfoSize;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/FaultTolerantWriteDxe/
FaultTolerantWriteSmm.c 317 UINTN InfoSize;
393 // Prevent InfoSize overflow
398 InfoSize = OFFSET_OF (SMM_FTW_WRITE_HEADER, Data) + Length + PrivateDataSize;
403 if (InfoSize > CommBufferPayloadSize) {
461 // Prevent InfoSize overflow
466 InfoSize = OFFSET_OF (SMM_FTW_GET_LAST_WRITE_HEADER, Data) + PrivateDataSize;
471 if (InfoSize > CommBufferPayloadSize) {
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/FvSimpleFileSystemDxe/
FvSimpleFileSystem.c 304 UINTN InfoSize;
306 InfoSize = (UINTN)FvFileInfo->FileInfo.Size;
307 if (*BufferSize < InfoSize) {
308 *BufferSize = InfoSize;
315 CopyMem (FileInfo, &FvFileInfo->FileInfo, InfoSize);
317 *BufferSize = InfoSize;
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Variable/RuntimeDxe/
VariableSmm.c 329 InfoEntry and InfoSize are external input. Care must be taken to make sure not security issue at runtime.
335 @param[in, out] InfoSize On input, the size of the variable information buffer.
348 IN OUT UINTN *InfoSize
368 if (*InfoSize < StatisticsInfoSize) {
369 *InfoSize = StatisticsInfoSize;
373 InfoNameMaxSize = (*InfoSize - sizeof (VARIABLE_INFO_ENTRY));
383 if (*InfoSize < StatisticsInfoSize) {
384 *InfoSize = StatisticsInfoSize;
389 *InfoSize = StatisticsInfoSize;
413 *InfoSize = 0;
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Guid/
ImageAuthentication.h 300 UINT32 InfoSize;
  /device/linaro/bootloader/edk2/SecurityPkg/Library/DxeDeferImageLoadLib/
DxeDeferImageLoadLib.c 179 UINTN InfoSize;
202 InfoSize = 0;
217 &InfoSize
223 Info = AllocateZeroPool (InfoSize);
230 &InfoSize
247 while (CheckLen < Info->InfoSize - sizeof (EFI_USER_INFO)) {
  /device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/
PosixFileSystem.c 381 UINTN InfoSize;
597 InfoSize = 0;
599 Status = PosixFileGetInfo (&NewPrivateFile->EfiFile, &gEfiFileInfoGuid, &InfoSize, Info);
605 Info = malloc (InfoSize);
610 Status = PosixFileGetInfo (&NewPrivateFile->EfiFile, &gEfiFileInfoGuid, &InfoSize, Info);
616 PosixFileSetInfo (&NewPrivateFile->EfiFile, &gEfiFileInfoGuid, InfoSize, Info);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/
Font.c     [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/WinNtSimpleFileSystemDxe/
WinNtSimpleFileSystem.c 879 UINTN InfoSize;
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
UserManager.h 75 UINT32 InfoSize;
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 is NULL.
    [all...]

Completed in 1084 milliseconds