Home | History | Annotate | Download | only in HiiDatabaseDxe

Lines Matching defs:AppendString

380   @param  AppendString           NULL-terminated Unicode string.

383 @retval EFI_SUCCESS AppendString is append to the end of MultiString
389 IN EFI_STRING AppendString
396 if (MultiString == NULL || *MultiString == NULL || AppendString == NULL) {
400 AppendStringSize = StrSize (AppendString);
420 StrCatS (*MultiString, MaxLen, AppendString);
593 EFI_STRING AppendString;
601 AppendString = NULL;
651 // Copy the <BlockConfig> to AppendString.
653 if (AppendString == NULL) {
654 AppendString = (EFI_STRING) AllocateZeroPool (AppendSize + sizeof (CHAR16));
655 StrnCatS (AppendString, AppendSize / sizeof (CHAR16) + 1, BlockPtrStart, AppendSize / sizeof (CHAR16));
657 TotalSize = StrSize (AppendString) + AppendSize + sizeof (CHAR16);
658 AppendString = (EFI_STRING) ReallocatePool (
659 StrSize (AppendString),
661 AppendString
663 if (AppendString == NULL) {
667 StrnCatS (AppendString, TotalSize / sizeof (CHAR16), BlockPtrStart, AppendSize / sizeof (CHAR16));
677 if (AppendString != NULL) {
679 // Reallocate ConfigAltResp to copy the AppendString.
681 TotalSize = StrSize (*ConfigAltResp) + StrSize (AppendString) + sizeof (CHAR16);
691 StrCatS (*ConfigAltResp, TotalSize / sizeof (CHAR16), AppendString);
698 if (AppendString != NULL) {
699 FreePool (AppendString);
736 EFI_STRING AppendString;
741 AppendString = NULL;
784 // Copy the <NvConfig> to AppendString.
786 if (AppendString == NULL) {
787 AppendString = (EFI_STRING) AllocateZeroPool (AppendSize + sizeof (CHAR16));
788 StrnCatS (AppendString, AppendSize / sizeof (CHAR16) + 1, NvConfigStart, AppendSize / sizeof (CHAR16));
790 TotalSize = StrSize (AppendString) + AppendSize + sizeof (CHAR16);
791 AppendString = (EFI_STRING) ReallocatePool (
792 StrSize (AppendString),
794 AppendString
796 if (AppendString == NULL) {
800 StrnCatS (AppendString, TotalSize / sizeof (CHAR16), NvConfigStart, AppendSize / sizeof (CHAR16));
810 if (AppendString != NULL) {
812 // Reallocate ConfigAltResp to copy the AppendString.
814 TotalSize = StrSize (*ConfigAltResp) + StrSize (AppendString) + sizeof (CHAR16);
817 StrSize (*ConfigAltResp) + StrSize (AppendString) + sizeof (CHAR16),
824 StrCatS (*ConfigAltResp, TotalSize / sizeof (CHAR16), AppendString);
830 if (AppendString != NULL) {
831 FreePool (AppendString);