Lines Matching defs:String
398 @param ErrorString Error string used by BROWSER_NO_SUBMIT_IF.
610 @param ResultsData A string returned from an IFR browser or
611 equivalent. The results string will have no
705 @param ResultsData A string returned from an IFR browser or
706 equivalent. The results string will have no
970 Create a new string in HII Package List.
972 @param String The String to be added
974 specified string.
976 @return The output string.
981 IN CHAR16 *String,
987 StringId = HiiSetString (HiiHandle, 0, String, NULL);
995 Delete a string from HII Package List.
997 @param StringId Id of the string in HII database.
1000 @retval EFI_SUCCESS The string was deleted successfully.
1018 Get the string based on the StringId and HII Package List Handle.
1020 @param Token The String's ID.
1022 the specified string.
1024 @return The output string.
1033 EFI_STRING String;
1039 String = HiiGetString (HiiHandle, Token, NULL);
1040 if (String == NULL) {
1041 String = AllocateCopyPool (StrSize (mUnknownString), mUnknownString);
1042 ASSERT (String != NULL);
1044 return (CHAR16 *) String;
1049 Allocate new memory and then copy the Unicode string Source to Destination.
1051 @param Dest Location to copy string
1052 @param Src String to copy
1072 @param Dest String to added to the end of.
1073 @param Src String to concatinate.
1220 @param ConfigRequest The ConfigRequest string.
1435 // Convert Config String to Unicode String, e.g "0041004200430044" => "ABCD"
1436 // Add string tail char L'\0' into Length
1959 // Allocate enough string buffer.
1966 // Convert Unicode String to Config String, e.g. "ABCD" => "0041004200430044"
1978 // Convert Buffer to Hex String
1996 // <ConfigHdr> + "&" + <VariableName> + "=" + "<string>"
2028 // Convert Unicode String to Config String, e.g. "ABCD" => "0041004200430044"
2037 // Convert Buffer to Hex String
2293 @param ConfigRequest The config request string which used to sync storage.
2603 Base on the return Progress string to find the form.
2605 Base on the first return Offset/Width (Name) string to find the form
2606 which keep this string.
2609 @param Storage Storage which has this Progress string.
2610 @param Progress The Progress string which has the first fail string.
2611 @param RetForm The return form for this progress string.
2612 @param RetQuestion The return question for the error progress string.
2614 @retval TRUE Find the error form and statement for this error progress string.
2648 // Prepare the "NAME" or "OFFSET=0x####&WIDTH=0x####" string.
2674 // Prepare the "NAME" or "OFFSET=0x####&WIDTH=0x####" string.
2679 // here, just keep the "Fred" string.
2687 // here, just keep the "OFFSET=0x####&WIDTH=0x####" string.
2716 // Find the OffsetWidth string in this form.
2747 // restore the OffsetWidth string to the original format.
3437 Converts the unicode character of the string from uppercase to lowercase.
3440 @param ConfigString String to be converted
3449 EFI_STRING String;
3457 for (String = ConfigString, Lower = FALSE; *String != L'\0'; String++) {
3458 if (*String == L'=') {
3460 } else if (*String == L'&') {
3462 } else if (Lower && *String >= L'A' && *String <= L'F') {
3463 *String = (CHAR16) (*String - L'A' + L'a');
3469 Find the point in the ConfigResp string for this question.
3472 @param ConfigResp Get ConfigResp string.
3537 Get Question default value from AltCfg string.
3566 // Try to get AltCfg string from form. If not found it, then
3836 NewString = GetToken (Question->HiiValue.Value.string, FormSet->HiiHandle);
3853 // Get default value from altcfg string.
3906 StrValue = HiiGetString (FormSet->HiiHandle, HiiValue->Value.string, NULL);
4077 Get AltCfg string for current form.
4103 // Check whether has get AltCfg string for this formset.
4123 // Get AltCfg string for each form.
4161 // Get the default configuration string according to the default ID.
4182 Clean AltCfg string for current form.
4208 Get AltCfg string for current formset.
4268 // Get the default configuration string according to the default ID.
4291 Clean AltCfg string for current formset.
4333 @param SkipGetAltCfg Whether skip the get altcfg string process.
4373 // Prepare the AltCfg String for form.
4437 // Clean the AltCfg String.
4444 // Prepare the AltCfg String for formset.
4458 // Clean the AltCfg String.
4650 HiiSetString (FormSet->HiiHandle, Question->HiiValue.Value.string, (CHAR16*)Question->BufferValue, NULL);
4792 // The last Request element in configRequest string.
4814 // If no request element remain, just remove the ConfigRequest string.
4824 Base on the current formset info, clean the ConfigRequest string in browser storage.
4860 Check whether current element in the ConfigReqeust string.
4865 @retval TRUE The Element is in the ConfigReqeust string.
4866 @retval FALSE The Element not in the configReqeust String.
4907 // Old String buffer is not sufficient for RequestElement, allocate a new one
4926 Adjust the config request info, remove the request elements which already in AllConfigRequest string.
4929 @param Request The input request string.
4998 // The last Request element in configRequest string.
5106 // Create the config request string to get all fields for this storage.
5756 @param PasswordString Password string to be checked. It may be NULL.
5758 "" string can be used to checked whether old password does exist.
5811 // Prepare password string in HII database
5814 IfrTypeValue.string = NewString (PasswordString, gCurrentSelection->FormSet->HiiHandle);
5816 IfrTypeValue.string = 0;
5832 // Remove password string from HII database
5835 DeleteString (IfrTypeValue.string, gCurrentSelection->FormSet->HiiHandle);
5910 If the same hot key has been registered, the new action and help string will override the previous ones.
5917 @param[in] HelpString Help string that describes the hot key information.