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

/device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/
H A DBmBoot.c584 UINTN DescMaxSize; local
639 DescMaxSize = StrSize (Manufacturer) + StrSize (Product) + StrSize (SerialNumber);
640 Description = AllocateZeroPool (DescMaxSize);
642 StrCatS (Description, DescMaxSize/sizeof(CHAR16), Manufacturer);
643 StrCatS (Description, DescMaxSize/sizeof(CHAR16), L" ");
645 StrCatS (Description, DescMaxSize/sizeof(CHAR16), Product);
646 StrCatS (Description, DescMaxSize/sizeof(CHAR16), L" ");
648 StrCatS (Description, DescMaxSize/sizeof(CHAR16), SerialNumber);

Completed in 56 milliseconds