Home | History | Annotate | Download | only in UefiHiiLib

Lines Matching refs:ResultsData

605   EFI_STRING  ResultsData;

624 ResultsData = SetResultsData;
627 // Retrieve the length of the buffer required ResultsData from the Browser Callback
642 ResultsData = AllocateZeroPool (sizeof (CHAR16));
643 return ResultsData;
651 // Allocate the ResultsData buffer
653 ResultsData = AllocateZeroPool (ResultsDataSize);
654 if (ResultsData == NULL) {
660 // Retrieve or set the ResultsData from the Browser Callback
665 ResultsData,
674 return ResultsData;
2664 EFI_STRING ResultsData;
2673 ResultsData = InternalHiiBrowserCallback (VariableGuid, VariableName, NULL);
2674 if (ResultsData == NULL) {
2679 // Construct <ConfigResp> mConfigHdrTemplate L'&' ResultsData L'\0'
2682 Size = Size + (StrLen (ResultsData) + 1) * sizeof (CHAR16);
2684 UnicodeSPrint (ConfigResp, Size, L"%s&%s", mConfigHdrTemplate, ResultsData);
2689 FreePool (ResultsData);
2750 EFI_STRING ResultsData;
2791 ResultsData = InternalHiiBrowserCallback (VariableGuid, VariableName, ConfigResp + StrLen(mConfigHdrTemplate) + 1);
2794 return (BOOLEAN)(ResultsData != NULL);