Lines Matching defs:ConfigResp

415   convert <ConfigRequest> and a buffer to a <ConfigResp>
424 @retval NULL The <ConfigResp> string could not be generated.
425 @retval Other Pointer to the Null-terminated Unicode <ConfigResp> string.
437 EFI_STRING ConfigResp;
444 // Convert <ConfigRequest> to <ConfigResp>
451 &ConfigResp,
457 return ConfigResp;
920 @param ConfigResp ConfigResp string contains the current setting.
933 IN EFI_STRING ConfigResp,
975 StringPtr = ConfigResp;
976 StringPtr = StrStr (ConfigResp, L"&OFFSET");
1620 EFI_STRING ConfigResp;
1639 ConfigResp = NULL;
1809 &ConfigResp
1822 if (StrStr (ConfigResp, L"&OFFSET=") == NULL) {
1828 // Current Setting is in ConfigResp, will be set into buffer, then check it again.
1834 Status = gHiiConfigRouting->RouteConfig (gHiiConfigRouting, ConfigResp, &Progress);
1837 // Current Setting is in ConfigResp, will be set into buffer, then check it again.
1839 Status = InternalHiiValidateCurrentSetting (ConfigResp, HiiPackageList, PackageListLength, VarGuid, VarName);
1848 // Free the allocated pacakge buffer and the got ConfigResp string.
1855 if (ConfigResp != NULL) {
1856 FreePool (ConfigResp);
1857 ConfigResp = NULL;
1944 if (ConfigResp != NULL) {
1945 FreePool (ConfigResp);
2093 @param[in] ConfigHdr Either <ConfigRequest> or <ConfigResp>.
2171 EFI_STRING ConfigResp;
2184 // Construct <ConfigResp> mConfigHdrTemplate L'&' ResultsData L'\0'
2188 ConfigResp = AllocateZeroPool (Size);
2189 UnicodeSPrint (ConfigResp, Size, L"%s&%s", mConfigHdrTemplate, ResultsData);
2195 if (ConfigResp == NULL) {
2200 // Convert <ConfigResp> to a buffer
2204 ConfigResp,
2212 FreePool (ConfigResp);
2254 EFI_STRING ConfigResp;
2285 // Convert <ConfigRequest> to <ConfigResp>
2287 ConfigResp = InternalHiiBlockToConfig (ConfigRequest, Buffer, BufferSize);
2289 if (ConfigResp == NULL) {
2296 ResultsData = InternalHiiBrowserCallback (VariableGuid, VariableName, ConfigResp + StrLen(mConfigHdrTemplate) + 1);
2297 FreePool (ConfigResp);