/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/SmbiosView/ |
H A D | Smbios.c | 23 @param[in] StringNumber String number to return. -1 is used to skip all strings and 35 CHAR8 *String; local 42 String = (CHAR8 *) (Smbios->Raw + Smbios->Hdr->Length); 49 return String; 54 for (; *String != 0; String++); 55 String++; 57 if (*String == 0) { 63 Smbios->Raw = (UINT8 *)++String;
|
H A D | LibSmbiosView.c | 279 CHAR8 *String; local 288 String = LibGetSmbiosString (Smbios, StringNumber); 289 if (String != NULL) { 290 CopyMem (Buffer, String, AsciiStrLen(String));
|
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellLevel2CommandsLib/ |
H A D | Reset.c | 39 CONST CHAR16 *String; local 82 String = ShellCommandLineGetValue(Package, L"-w"); 83 if (String != NULL) { 84 gRT->ResetSystem(EfiResetCold, EFI_SUCCESS, StrSize(String), (VOID*)String); 94 String = ShellCommandLineGetValue(Package, L"-s"); 95 DEBUG_CODE(ShellPrintEx(-1,-1,L"Reset with %s (%d bytes)", String, String!=NULL?StrSize(String):0);); 96 if (String ! [all...] |
H A D | TimeDate.c | 18 Determine if String is a valid representation for a time or date. 20 @param[in] String The pointer to the string to test. 26 @retval TRUE String is a valid representation. 27 @retval FALSE String is invalid. 32 IN CONST CHAR16 *String, 46 if (*String == L'-') { 47 String++; 54 if (!ShellIsDecimalDigitCharacter(*String)) { 60 for ( ; String != NULL && *String ! 31 InternalIsTimeLikeString( IN CONST CHAR16 *String, IN CONST CHAR16 Char, IN CONST UINTN Min, IN CONST UINTN Max, IN CONST BOOLEAN MinusOk ) argument [all...] |
H A D | Map.c | 27 @param[in] String pointer to the string to analyze, 30 @retval TRUE String has only numbers and letters 31 @retval FALSE String has at least one other character. 36 IN CONST CHAR16 *String, 41 for (Count = 0 ; Count < Len && String != NULL && *String != CHAR_NULL ; String++,Count++) { 42 if (! ((*String >= L'a' && *String <= L'z') || 43 (*String > 35 IsNumberLetterOnly( IN CONST CHAR16 *String, IN CONST UINTN Len ) argument [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Library/UefiHiiLib/ |
H A D | HiiString.c | 19 This function create a new string in String Package or updates an existing 20 string in a String Package. If StringId is 0, then a new string is added to 21 a String Package. If StringId is not zero, then a string in String Package is 23 for all the languages that the String Package supports. If SupportedLanguages 28 If String is NULL, then ASSERT(). 33 String Package associated with HiiHandle. If 35 is updated in the String Package associated 37 @param[in] String A pointer to the Null-terminated Unicode string 38 to add or update in the String Packag 58 HiiSetString( IN EFI_HII_HANDLE HiiHandle, IN EFI_STRING_ID StringId, OPTIONAL IN CONST EFI_STRING String, IN CONST CHAR8 *SupportedLanguages OPTIONAL ) argument 226 EFI_STRING String; local [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Library/FrameworkUefiLib/ |
H A D | Console.c | 249 Computes the display length of a Null-terminated Unicode String. 252 string specified by String. If String is NULL then 0 is returned. If any of the widths 253 of the Unicode characters in String can not be determined, then 0 is returned. The display 254 width of String can be computed by summing the display widths of each Unicode character 255 in String. Unicode characters that are narrow glyphs have a width of 1, and Unicode 257 If String is not aligned on a 16-bit boundary, then ASSERT(). 259 @param String A pointer to a Null-terminated Unicode string. 261 @return The display length of the Null-terminated Unicode string specified by String. 267 IN CONST CHAR16 *String 326 CHAR16 *String; local [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Disk/UnicodeCollation/EnglishDxe/ |
H A D | UnicodeCollationEng.c | 254 @param String A pointer to a Null-terminated string. 257 @retval TRUE Pattern was found in String. 258 @retval FALSE Pattern was not found in String. 265 IN CHAR16 *String, 282 if (*String != 0) { 292 while (*String != 0) { 293 if (EngMetaiMatch (This, String, Pattern)) { 297 String += 1; 300 return EngMetaiMatch (This, String, Pattern); 306 if (*String 263 EngMetaiMatch( IN EFI_UNICODE_COLLATION_PROTOCOL *This, IN CHAR16 *String, IN CHAR16 *Pattern ) argument 437 EngStrToFat( IN EFI_UNICODE_COLLATION_PROTOCOL *This, IN CHAR16 *String, IN UINTN FatSize, OUT CHAR8 *Fat ) argument [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiLib/ |
H A D | Console.c | 249 Computes the display length of a Null-terminated Unicode String. 252 Unicode string specified by String. If String is NULL then 0 is returned. If 253 any of the widths of the Unicode characters in String can not be determined, 254 then 0 is returned. The display width of String can be computed by summing the 255 display widths of each Unicode character in String. Unicode characters that 257 have a width of 2. If String is not aligned on a 16-bit boundary, then ASSERT(). 259 @param String A pointer to a Null-terminated Unicode string. 261 @return The display length of the Null-terminated Unicode string specified by String. 267 IN CONST CHAR16 *String 326 CHAR16 *String; local [all...] |
H A D | UefiLibPrint.c | 717 Unicode string specified by String. String is optional and may be NULL. 722 If String is not NULL and not aligned on a 16-bit boundary, then ASSERT(). 726 @param[in] String A Null-terminated Unicode string. 732 string appended to String. 737 IN CHAR16 *String, OPTIONAL 751 if (String != NULL) { 752 SizeRequired = StrSize(String) + (CharactersRequired * sizeof(CHAR16)); 763 if (String != NULL) { 764 StrCpy(BufferToReturn, String); 736 CatVSPrint( IN CHAR16 *String, OPTIONAL IN CONST CHAR16 *FormatString, IN VA_LIST Marker ) argument 799 CatSPrint( IN CHAR16 *String, OPTIONAL IN CONST CHAR16 *FormatString, ... ) argument [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/ |
H A D | StringFuncs.c | 32 IN CHAR8 *String 38 Allocates a new string and copies 'String' to clone it 42 String The string to clone 52 NewString = malloc (strlen (String) + 1); 54 strcpy (NewString, String); 63 IN CHAR8 *String 73 String The string to 'strip' 83 if (String == NULL) { 90 for (Pos = String; isspace ((int)*Pos); Pos++) { 92 if (Pos != String) { 418 CHAR8* String; local [all...] |
/vbox/src/VBox/VMM/include/ |
H A D | CFGMInternal.h | 43 /** String value. (UTF-8 of course) */ 50 } String; member in union:CFGMVALUE
|
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Include/Protocol/ |
H A D | FrameworkFormCallback.h | 72 /// If the OpCode is a String type - Data is a CHAR16[x] type. 93 CHAR16 String[1]; ///< If returning an error - fill the string with null-terminated contents. member in union:__anon10714
|
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/IScsiDxe/ |
H A D | IScsiMisc.c | 370 CHAR16 *String; local 378 String = &Str[3 * Index - 1] ; 380 String += UnicodeSPrint (String, 6 * sizeof (CHAR16), L"\\%04x", (UINTN) VlanId); 383 *String = L'\0'; 420 // Prefix for Hex String
|
H A D | IScsiConfig.c | 68 @param[in] String The buffer of the string to be parsed. 77 IN CONST CHAR16 *String, 88 if ((String == NULL) || (IsId == NULL)) { 92 IsIdStr = (CHAR16 *) String; 132 @param[out] String The buffer to store the converted string. 141 OUT CHAR16 *String, 148 if ((String == NULL) || (IsId == NULL)) { 155 String, 162 String, 170 String 76 IScsiParseIsIdFromString( IN CONST CHAR16 *String, IN OUT UINT8 *IsId ) argument 140 IScsiConvertIsIdToString( OUT CHAR16 *String, IN UINT8 *IsId ) argument [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/VlanConfigDxe/ |
H A D | VlanConfigImpl.c | 58 in for the names in the Request string. String to 356 CHAR16 *String; local 413 String = VlanStr; 415 StrCpy (String, L" VLAN ID:"); 416 String += 10; 421 SetMem16 (String, (4 - DigitalCount) * sizeof (CHAR16), L' '); 422 StrCpy (String + 4 - DigitalCount, VlanIdStr); 423 String += 4; 425 StrCpy (String, L", Priority:"); 426 String [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseLib/ |
H A D | String.c | 145 Unicode string specified by String. 147 If String is NULL, then ASSERT(). 148 If String is not aligned on a 16-bit boundary, then ASSERT(). 149 If PcdMaximumUnicodeStringLength is not zero, and String contains more than 153 @param String A pointer to a Null-terminated Unicode string. 155 @return The length of String. 161 IN CONST CHAR16 *String 166 ASSERT (String != NULL); 167 ASSERT (((UINTN) String & BIT0) == 0); 169 for (Length = 0; *String ! 459 StrStr( IN CONST CHAR16 *String, IN CONST CHAR16 *SearchString ) argument 1593 AsciiStrStr( IN CONST CHAR8 *String, IN CONST CHAR8 *SearchString ) argument [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePeCoffLib/ |
H A D | BasePeCoff.c | 1026 CHAR16 *String; local 1407 String = &ResourceDirectoryString->String[0]; 1410 String[0] == L'H' && 1411 String[1] == L'I' && 1412 String[2] == L'I') {
|
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application/IpsecConfig/ |
H A D | IpSecConfig.h | 94 CHAR16 *String; member in struct:__anon12470
|
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Application/Shell/ |
H A D | ConsoleLogger.c | 425 @param[in] String String pointer to add. 431 IN CONST CHAR16 *String, 442 for ( Walker = String 571 @param[in] String The string to output 586 IN CONST CHAR16 *String, 595 Status = ConsoleInfo->OldConOut->OutputString (ConsoleInfo->OldConOut, (CHAR16*)String); 601 return (AppendStringToHistory(String, ConsoleInfo)); 655 @param[in] String The string to output 670 IN CONST CHAR16 *String, 430 AppendStringToHistory( IN CONST CHAR16 *String, IN CONSOLE_LOGGER_PRIVATE_DATA *ConsoleInfo ) argument 585 ConsoleLoggerOutputStringSplit( IN CONST CHAR16 *String, IN CONSOLE_LOGGER_PRIVATE_DATA *ConsoleInfo ) argument 669 ConsoleLoggerPrintWithPageBreak( IN CONST CHAR16 *String, IN CONSOLE_LOGGER_PRIVATE_DATA *ConsoleInfo ) argument [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/BdsDxe/BootMaint/ |
H A D | UpdatePage.c | 1265 CHAR16 String[100]; local 1407 UnicodeSPrint (String, sizeof (String), TypeStr, Index); 1408 StrRef = HiiSetString (CallbackData->BmmHiiHandle, 0, String, NULL); 1410 UnicodeSPrint (String, sizeof (String), TypeStrHelp, Index); 1411 StrRefHelp = HiiSetString (CallbackData->BmmHiiHandle, 0, String, NULL);
|
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application/IfConfig6/ |
H A D | IfConfig6.c | 113 @param[in] String The pointer of the input string. 121 IN CONST CHAR16 *String, 130 if (*String == L'\0') { 137 Str = (CHAR16 *) AllocateZeroPool (StrSize (String)); 139 Str = StrCpy (Str, String); 120 SplitStrToList( IN CONST CHAR16 *String, IN CHAR16 Separator ) argument
|
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IScsiDxe/ |
H A D | IScsiMisc.c | 295 CHAR16 *String; local 303 String = &Str[3 * Index - 1] ; 305 String += UnicodeSPrint (String, 6 * sizeof (CHAR16), L"\\%04x", (UINTN) VlanId); 308 *String = L'\0'; 346 // Prefix for Hex String. 422 @param[in] Str String in decimal or hex. 744 @param[in] Name String part of EFI variable name.
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenSec/ |
H A D | GenSec.c | 184 fprintf (stdout, " -n String, --name String\n\ 185 String is a NULL terminated string used in Ui section.\n"); 202 CHAR8 *String, 213 String - Pointer to string that is written to FILE. 222 while (*String != '\0') { 223 *(UniString++) = (CHAR16) *(String++); 352 Converts Align String to align value (1~64K). 201 Ascii2UnicodeString( CHAR8 *String, CHAR16 *UniString ) argument
|
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/GenericBdsLib/ |
H A D | BdsMisc.c | 187 @param String The description of the boot#### or driver#### 200 IN CHAR16 *String, 232 VBoxLogFlowFuncMarkVar(String, "%s"); 283 if (CompareMem (Description, String, StrSize (Description)) == 0) { 304 OptionSize = sizeof (UINT32) + sizeof (UINT16) + StrSize (String); 314 CopyMem (TempPtr, String, StrSize (String)); 315 TempPtr += StrSize (String); 468 Unicode string specified by String. 470 If String i 197 BdsLibRegisterNewOption( IN LIST_ENTRY *BdsOptionList, IN EFI_DEVICE_PATH_PROTOCOL *DevicePath, IN CHAR16 *String, IN CHAR16 *VariableName ) argument 481 StrSizeEx( IN CONST CHAR16 *String, IN UINTN MaxStringLen ) argument 1058 CHAR16 *String; local [all...] |