Searched defs:Str (Results 1 - 25 of 44) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/IScsiDxe/
H A DIScsiDhcp.h37 CHAR8 *Str; member in struct:_ISCSI_ROOT_PATH_FIELD
H A DIScsiMisc.c22 @param[in, out] Str Pointer to the null-terminated string to be trimmed. On return,
23 Str will hold the trimmed string.
29 IN OUT CHAR16 *Str,
36 if (*Str == 0) {
43 for (Pointer1 = Str; (*Pointer1 != 0) && (*Pointer1 == CharC); Pointer1++) {
47 Pointer2 = Str;
63 for (Pointer1 = Str + StrLen(Str) - 1; Pointer1 >= Str && *Pointer1 == CharC; Pointer1--) {
66 if (Pointer1 != Str
28 StrTrim( IN OUT CHAR16 *Str, IN CHAR16 CharC ) argument
121 IScsiAsciiStrToLun( IN CHAR8 *Str, OUT UINT8 *Lun ) argument
300 IScsiAsciiStrToIp( IN CHAR8 *Str, OUT EFI_IPv4_ADDRESS *Ip ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/IScsiDxe/
H A DIScsiDhcp.h38 CHAR8 *Str; member in struct:_ISCSI_ROOT_PATH_FIELD
H A DIScsiMisc.c22 @param[in, out] Str Pointer to the null-terminated string to be trimmed.
23 On return, Str will hold the trimmed string.
30 IN OUT CHAR16 *Str,
37 if (*Str == 0) {
44 for (Pointer1 = Str; (*Pointer1 != 0) && (*Pointer1 == CharC); Pointer1++) {
48 Pointer2 = Str;
64 for (Pointer1 = Str + StrLen(Str) - 1; Pointer1 >= Str && *Pointer1 == CharC; Pointer1--) {
67 if (Pointer1 != Str
29 IScsiStrTrim( IN OUT CHAR16 *Str, IN CHAR16 CharC ) argument
125 IScsiAsciiStrToLun( IN CHAR8 *Str, OUT UINT8 *Lun ) argument
251 IScsiAsciiStrToIp( IN CHAR8 *Str, IN UINT8 IpMode, OUT EFI_IP_ADDRESS *Ip ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application/IpsecConfig/
H A DDump.c63 @param[in] Str The pointer to the ASCII string.
68 IN CHAR8 *Str,
75 Print (L"%c", (CHAR16) Str[Index]);
187 CHAR16 *Str; local
211 Str = MapIntegerToString (Selector->NextLayerProtocol, mMapIpProtocol);
212 if (Str != NULL) {
213 Print (L" %s", Str);
67 DumpAsciiString( IN CHAR8 *Str, IN UINTN Length ) argument
H A DHelper.c257 @param[in] Str The pointer to the string.
260 @return The integer value of converted Str.
264 IN CONST CHAR16 *Str,
282 while ((*Str != 0) && (*Str == ' ')) {
283 Str++;
286 // For NULL Str, just return.
288 if (*Str == 0) {
294 Len = StrLen (Str);
295 StrTail = (CHAR16 *) (Str
263 StrToUInteger( IN CONST CHAR16 *Str, OUT EFI_STATUS *Status ) argument
381 MapStringToInteger( IN CONST CHAR16 *Str, IN STR2INT *Map ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Mtftp6Dxe/
H A DMtftp6Option.c29 @param[in] Str The pointer to the Ascii string of multicast option.
40 IN UINT8 *Str,
53 if (*Str == ',') {
58 Ip6Str = (CHAR8 *) AllocateCopyPool (AsciiStrSize ((CHAR8 *) Str), Str);
64 // The IPv6 address locates before comma in the input Str.
80 while ((*Str != '\0') && (*Str != ',')) {
81 Str++;
85 if (*Str !
39 Mtftp6ParseMcastOption( IN UINT8 *Str, IN MTFTP6_EXT_OPTION_INFO *ExtInfo ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/
H A DVfrError.cpp100 CHAR8 *Str = NULL; local
105 Str = strchr (Record, ' ');
106 mScopeLineStart = atoi (++Str);
108 Str = strchr (Str, '\"');
109 FileName = ++Str;
111 while((Str = strstr (FileName, "\\\\")) != NULL) {
112 FileName = Str + 2;
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/
H A DSecureBootConfigMisc.c160 @param[in] Str Specifies the String to be converted.
170 IN CHAR16 *Str,
187 StrCpy (Buffer, Str);
169 StringToGuid( IN CHAR16 *Str, IN UINTN StrLen, OUT EFI_GUID *Guid ) argument
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/HexEdit/
H A DDiskImage.c109 @param[in] Str File name to set.
119 IN CONST CHAR16 *Str,
132 Len = StrLen (Str);
140 HDiskImage.Name[Index] = Str[Index];
180 CHAR16 *Str; local
284 Str = CatSPrint(NULL, L"%d Lines Read", HBufferImage.NumLines);
285 if (Str == NULL) {
290 StatusBarSetStatusString (Str);
291 SHELL_FREE_NON_NULL (Str);
118 HDiskImageSetDiskNameOffsetSize( IN CONST CHAR16 *Str, IN UINTN Offset, IN UINTN Size ) argument
H A DFileImage.c103 @param[in] Str File name to set.
110 IN CONST CHAR16 *Str
121 Size = StrLen (Str);
129 HFileImage.FileName[Index] = Str[Index];
268 CHAR16 *Str; local
382 Str = CatSPrint(NULL, L"%d Lines Wrote", NumLines);
383 StatusBarSetStatusString (Str);
384 FreePool (Str);
H A DMemImage.c190 CHAR16 *Str; local
243 Str = CatSPrint(NULL, L"%d Lines Read", HBufferImage.NumLines);
244 if (Str == NULL) {
249 StatusBarSetStatusString (Str);
250 SHELL_FREE_NON_NULL (Str);
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Mtftp4Dxe/
H A DMtftp4Option.c73 @param Str The string to convert from
80 IN UINT8 *Str
85 ASSERT (Str != NULL);
89 for (; NET_IS_DIGIT (*Str); Str++) {
90 Num = Num * 10 + (*Str - '0');
100 @param Str The string representation of IP
109 IN UINT8 *Str,
121 if (!NET_IS_DIGIT (*Str)) {
125 Byte = NetStringToU32 (Str);
108 NetStringToIp( IN UINT8 *Str, OUT IP4_ADDR *Ip ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application/VConfig/
H A DVConfig.c104 CHAR16 *Str; local
106 Str = Name + 3;
107 if ((StrnCmp (Name, L"eth", 3) != 0) || (*Str == 0)) {
111 while (*Str != 0) {
112 if ((*Str < L'0') || (*Str > L'9')) {
116 Str++;
333 CHAR16 *Str; local
339 Str = String;
340 while ((*Str >
610 CONST CHAR16 *Str; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/FirmwareVolume/UpdateDriverDxe/
H A DParseUpdateProfile.c517 @param Str ascii string to be converted.
524 IN UINT8 *Str
534 while (*Str != '\0') {
535 if (*Str != 0x20) {
538 Str++;
541 if (*Str == '\0') {
549 if (*Str == '0') {
550 if ((*(Str+1) == 'x' ) || ( *(Str+1) == 'X')) {
551 return AsciiStrHexToUintn ((CONST CHAR8 *) Str);
633 UpdateStrCatNumber( IN OUT UINT8 *Str, IN UINTN Number ) argument
663 UpdateStringToGuid( IN UINT8 *Str, IN OUT EFI_GUID *Guid ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/DevicePathDxe/
H A DDevicePath.h54 CHAR16 *Str; member in struct:__anon11151
68 IN OUT POOL_PRINT *Str,
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Ip4ConfigDxe/
H A DIp4ConfigNv.c61 @param[in] Str The UNICODE string.
69 IN CHAR16 *Str,
78 while (*Str != L'\0') {
85 while ((*Str >= L'0') && (*Str <= L'9')) {
86 Number = Number * 10 + (*Str - L'0');
87 Str++;
96 if ((*Str != L'\0') && (*Str != L'.')) {
104 if (*Str
68 Ip4StrToIp( IN CHAR16 *Str, OUT EFI_IPv4_ADDRESS *Ip ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/VlanConfigDxe/
H A DVlanConfigImpl.c488 CHAR16 Str[26 + sizeof (EFI_MAC_ADDRESS) * 2 + 1]; local
545 StrCpy (Str, L"VLAN Configuration (MAC:");
546 StrnCat (Str, MacString, sizeof (EFI_MAC_ADDRESS) * 2);
547 StrCat (Str, L")");
551 Str,
561 Str,
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/UefiPxeBcDxe/
H A DPxeBcBoot.c24 @param[in] Str The pointer to the string.
30 IN UINT8 *Str,
40 Tmp = Str[Len];
41 Str[Len] = 0;
42 AsciiPrint ("%a \n", Str);
47 Str[Len] = Tmp;
29 PxeBcDisplayBootItem( IN UINT8 *Str, IN UINT8 Len ) argument
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/UserIdentification/UserProfileManagerDxe/
H A DUserProfileModify.c256 CHAR16 *Str; local
263 Str = AllocateZeroPool (DateBufLen);
264 if (Str == NULL) {
269 Str,
280 DateBufLen -= StrLen (Str);
282 Str + StrLen (Str),
290 HiiSetString (mCallbackInfo->HiiHandle, DateId, Str, NULL);
291 FreePool (Str);
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/Edit/
H A DMainTextEditor.c1151 CHAR16 *Str; local
1191 Str = CatSPrint (NULL, L"File to Save: [%s]", MainEditor.FileBuffer->FileName);
1192 if (Str == NULL) {
1196 if (StrLen (Str) >= 50) {
1200 Str[46] = L'.';
1201 Str[47] = L'.';
1202 Str[48] = L'.';
1203 Str[49] = L']';
1204 Str[50] = CHAR_NULL;
1207 Status = InputBarSetPrompt (Str);
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiShellDebug1CommandsLib/
H A DUefiShellDebug1CommandsLib.c160 CHAR8 Str[20]; local
178 Str[Index] = (CHAR8) ((TempByte < ' ' || TempByte > 'z') ? '.' : TempByte);
182 Str[Index] = 0;
183 ShellPrintEx(-1, -1, L"%*a%02X: %-.48a *%a*\r\n", Indent, "", Offset, Val, Str);
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Include/Library/
H A DGenericBdsLib.h575 CHAR16 *Str; member in struct:__anon10445
583 IN OUT POOL_PRINT *Str,
1030 @param Str The buffer storing device name.
1036 IN OUT POOL_PRINT *Str,
1044 @param Str Tracks the allocated pool, size in use, and amount of pool allocated.
1056 IN OUT POOL_PRINT *Str,
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/SetupBrowserDxe/
H A DIfrParse.c110 CHAR16 Str[MAXIMUM_VALUE_CHARACTERS]; local
116 UnicodeValueToString (Str, 0, Statement->VarStoreInfo.VarName, MAXIMUM_VALUE_CHARACTERS - 1);
118 Id = HiiSetString (FormSet->HiiHandle, 0, Str, NULL);
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application/IfConfig6/
H A DIfConfig6.c125 CHAR16 *Str; local
137 Str = (CHAR16 *) AllocateZeroPool (StrSize (String));
138 ASSERT (Str != NULL);
139 Str = StrCpy (Str, String);
140 ArgStr = Str;
152 while (*Str != L'\0') {
153 if (*Str == Separator) {
154 *Str = L'\0';
156 ArgStr = Str
1657 CHAR16 *Str; local
[all...]

Completed in 89 milliseconds

12