mirror of https://github.com/acidanthera/audk.git
IntelFrameworkModulePkg: Replace [Ascii|Unicode]ValueToString
It is the follow up of commits 51f0ceb..9e32e97 to replace AsciiValueToString/UnicodeValueToString with AsciiValueToStringS/UnicodeValueToStringS. Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Hao Wu <hao.a.wu@intel.com> Reviewed-by: Jeff Fan <jeff.fan@intel.com>
This commit is contained in:
parent
dc6ab283ca
commit
0438f5e287
|
@ -1,7 +1,7 @@
|
|||
/** @file
|
||||
Dynamically update the pages.
|
||||
|
||||
Copyright (c) 2004 - 2016, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2004 - 2017, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
|
@ -844,11 +844,17 @@ UpdateConModePage (
|
|||
//
|
||||
// Build mode string Column x Row
|
||||
//
|
||||
UnicodeValueToString (ModeString, 0, Col, 0);
|
||||
UnicodeValueToStringS (ModeString, sizeof (ModeString), 0, Col, 0);
|
||||
PStr = &ModeString[0];
|
||||
StrCatS (PStr, ARRAY_SIZE (ModeString), L" x ");
|
||||
PStr = PStr + StrLen (PStr);
|
||||
UnicodeValueToString (PStr , 0, Row, 0);
|
||||
UnicodeValueToStringS (
|
||||
PStr,
|
||||
sizeof (ModeString) - ((UINTN)PStr - (UINTN)&ModeString[0]),
|
||||
0,
|
||||
Row,
|
||||
0
|
||||
);
|
||||
|
||||
ModeToken[Index] = HiiSetString (CallbackData->BmmHiiHandle, 0, ModeString, NULL);
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/** @file
|
||||
The platform device manager reference implementation
|
||||
|
||||
Copyright (c) 2004 - 2015, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2004 - 2017, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
|
@ -388,7 +388,14 @@ GetMacAddressString(
|
|||
//
|
||||
HwAddress = &MacAddressNode->MacAddress.Addr[0];
|
||||
for (Index = 0; Index < HwAddressSize; Index++) {
|
||||
String += UnicodeValueToString (String, PREFIX_ZERO | RADIX_HEX, *(HwAddress++), 2);
|
||||
UnicodeValueToStringS (
|
||||
String,
|
||||
BufferLen - ((UINTN)String - (UINTN)*PBuffer),
|
||||
PREFIX_ZERO | RADIX_HEX,
|
||||
*(HwAddress++),
|
||||
2
|
||||
);
|
||||
String += StrnLenS (String, (BufferLen - ((UINTN)String - (UINTN)*PBuffer)) / sizeof (CHAR16));
|
||||
if (Index < HwAddressSize - 1) {
|
||||
*String++ = L':';
|
||||
}
|
||||
|
@ -408,7 +415,14 @@ GetMacAddressString(
|
|||
|
||||
if (VlanId != 0) {
|
||||
*String++ = L'\\';
|
||||
String += UnicodeValueToString (String, PREFIX_ZERO | RADIX_HEX, VlanId, 4);
|
||||
UnicodeValueToStringS (
|
||||
String,
|
||||
BufferLen - ((UINTN)String - (UINTN)*PBuffer),
|
||||
PREFIX_ZERO | RADIX_HEX,
|
||||
VlanId,
|
||||
4
|
||||
);
|
||||
String += StrnLenS (String, (BufferLen - ((UINTN)String - (UINTN)*PBuffer)) / sizeof (CHAR16));
|
||||
}
|
||||
|
||||
//
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/** @file
|
||||
FrontPage routines to handle the callbacks and browser calls
|
||||
|
||||
Copyright (c) 2004 - 2016, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2004 - 2017, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
|
@ -629,9 +629,16 @@ ConvertProcessorToString (
|
|||
|
||||
StringBuffer = AllocateZeroPool (0x20);
|
||||
ASSERT (StringBuffer != NULL);
|
||||
Index = UnicodeValueToString (StringBuffer, LEFT_JUSTIFY, FreqMhz / 1000, 3);
|
||||
UnicodeValueToStringS (StringBuffer, 0x20, LEFT_JUSTIFY, FreqMhz / 1000, 3);
|
||||
Index = StrnLenS (StringBuffer, 0x20 / sizeof (CHAR16));
|
||||
StrCatS (StringBuffer, 0x20 / sizeof (CHAR16), L".");
|
||||
UnicodeValueToString (StringBuffer + Index + 1, PREFIX_ZERO, (FreqMhz % 1000) / 10, 2);
|
||||
UnicodeValueToStringS (
|
||||
StringBuffer + Index + 1,
|
||||
0x20 - sizeof (CHAR16) * (Index + 1),
|
||||
PREFIX_ZERO,
|
||||
(FreqMhz % 1000) / 10,
|
||||
2
|
||||
);
|
||||
StrCatS (StringBuffer, 0x20 / sizeof (CHAR16), L" GHz");
|
||||
*String = (CHAR16 *) StringBuffer;
|
||||
return ;
|
||||
|
@ -655,7 +662,7 @@ ConvertMemorySizeToString (
|
|||
|
||||
StringBuffer = AllocateZeroPool (0x20);
|
||||
ASSERT (StringBuffer != NULL);
|
||||
UnicodeValueToString (StringBuffer, LEFT_JUSTIFY, MemorySize, 6);
|
||||
UnicodeValueToStringS (StringBuffer, 0x20, LEFT_JUSTIFY, MemorySize, 6);
|
||||
StrCatS (StringBuffer, 0x20 / sizeof (CHAR16), L" MB RAM");
|
||||
|
||||
*String = (CHAR16 *) StringBuffer;
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
/** @file
|
||||
Perform the platform memory test
|
||||
|
||||
Copyright (c) 2004 - 2015, Intel Corporation. All rights reserved.<BR>
|
||||
Copyright (c) 2004 - 2017, Intel Corporation. All rights reserved.<BR>
|
||||
This program and the accompanying materials
|
||||
are licensed and made available under the terms and conditions of the BSD License
|
||||
which accompanies this distribution. The full text of the license may be found at
|
||||
|
@ -318,7 +318,7 @@ BdsMemoryTest (
|
|||
TempData
|
||||
);
|
||||
if (TestPercent != PreviousValue) {
|
||||
UnicodeValueToString (StrPercent, 0, TestPercent, 0);
|
||||
UnicodeValueToStringS (StrPercent, sizeof (StrPercent), 0, TestPercent, 0);
|
||||
TmpStr = GetStringById (STRING_TOKEN (STR_MEMORY_TEST_PERCENT));
|
||||
if (TmpStr != NULL) {
|
||||
//
|
||||
|
@ -386,7 +386,7 @@ BdsMemoryTest (
|
|||
|
||||
Done:
|
||||
if (!FeaturePcdGet(PcdBootlogoOnlyEnable)) {
|
||||
UnicodeValueToString (StrTotalMemory, COMMA_TYPE, TotalMemorySize, 0);
|
||||
UnicodeValueToStringS (StrTotalMemory, StrTotalMemorySize, COMMA_TYPE, TotalMemorySize, 0);
|
||||
if (StrTotalMemory[0] == L',') {
|
||||
StrTotalMemory++;
|
||||
StrTotalMemorySize -= sizeof (CHAR16);
|
||||
|
|
Loading…
Reference in New Issue