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

/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/
H A DSecureBootConfigMisc.c161 @param[in] StrLen Number of Unicode Characters of String (exclusive \0)
171 IN UINTN StrLen,
182 Buffer = (CHAR16 *) AllocateZeroPool (sizeof (CHAR16) * (StrLen + 1));
169 StringToGuid( IN CHAR16 *Str, IN UINTN StrLen, OUT EFI_GUID *Guid ) argument
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/FirmwareVolume/UpdateDriverDxe/
H A DParseUpdateProfile.c672 UINTN StrLen; local
676 StrLen = AsciiStrLen ((CONST CHAR8 *) Str);
677 Buffer = AllocatePool (StrLen + 1);
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/SmbiosDxe/
H A DSmbiosDxe.c132 UINTN StrLen; local
144 StrLen = 0;
166 for (StrLen = 0 ; StrLen < MaxLen; StrLen++) {
167 if (*(CharInStr+StrLen) == 0) {
172 if (StrLen == MaxLen) {
179 CharInStr += StrLen;
180 *Size += StrLen;
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/
H A DString.c59 ASSERT ((UINTN)(Destination - Source) > StrLen (Source));
60 ASSERT ((UINTN)(Source - Destination) > StrLen (Source));
123 ASSERT ((UINTN)(Destination - Source) > StrLen (Source));
160 StrLen ( function
205 return (StrLen (String) + 1) * sizeof (*String);
302 // Length tests are performed inside StrLen().
361 StrCpy (Destination + StrLen (Destination), Source);
365 // PcdMaximumUnicodeStringLength is tested inside StrLen().
419 DestinationLen = StrLen (Destination);
425 // PcdMaximumUnicodeStringLength is tested inside StrLen()
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/SetupBrowserDxe/
H A DIfrParse.c370 UINTN StrLen; local
396 StrLen = UnicodeSPrint (
403 Question->BlockName = AllocateCopyPool ((StrLen + 1) * sizeof (CHAR16), RequestElement);
405 StrLen = UnicodeSPrint (RequestElement, 30 * sizeof (CHAR16), L"&%s", Question->VariableName);
419 if (StrLen > Storage->SpareStrLen) {
436 Storage->SpareStrLen -= StrLen;
468 if (StrLen > ConfigInfo->SpareStrLen) {
485 ConfigInfo->SpareStrLen -= StrLen;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/HiiDatabaseDxe/
H A DString.c989 BlockSize = OldBlockSize + StrLen (String);
2004 UINTN StrLen; local
2011 StrLen = AsciiStrSize (Language1);
2012 Lan1 = AllocateZeroPool (StrLen);
2017 StrLen = AsciiStrSize (Language2);
2018 Lan2 = AllocateZeroPool (StrLen);

Completed in 64 milliseconds