update string function comment to clear the semantic meaning.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8153 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
97d77ccf43
commit
53e9661036
@ -1,7 +1,7 @@
|
|||||||
/** @file
|
/** @file
|
||||||
Unicode and ASCII string primatives.
|
Unicode and ASCII string primatives.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2008, Intel Corporation<BR>
|
Copyright (c) 2006 - 2009, Intel Corporation<BR>
|
||||||
All rights reserved. This program and the accompanying materials
|
All rights reserved. This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
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
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
@ -95,9 +95,11 @@ StrCpy (
|
|||||||
If Length > 0 and Source is NULL, then ASSERT().
|
If Length > 0 and Source is NULL, then ASSERT().
|
||||||
If Length > 0 and Source is not aligned on a 16-bit boundary, then ASSERT().
|
If Length > 0 and Source is not aligned on a 16-bit boundary, then ASSERT().
|
||||||
If Source and Destination overlap, then ASSERT().
|
If Source and Destination overlap, then ASSERT().
|
||||||
|
If PcdMaximumUnicodeStringLength is not zero, and Length is greater than
|
||||||
|
PcdMaximumUnicodeStringLength, then ASSERT().
|
||||||
If PcdMaximumUnicodeStringLength is not zero, and Source contains more than
|
If PcdMaximumUnicodeStringLength is not zero, and Source contains more than
|
||||||
PcdMaximumUnicodeStringLength Unicode characters, not including the Null-terminator,
|
PcdMaximumUnicodeStringLength Unicode characters, not including the Null-terminator,
|
||||||
and Length is greater than PcdMaximumUnicodeStringLength, then ASSERT().
|
then ASSERT().
|
||||||
|
|
||||||
@param Destination Pointer to a Null-terminated Unicode string.
|
@param Destination Pointer to a Null-terminated Unicode string.
|
||||||
@param Source Pointer to a Null-terminated Unicode string.
|
@param Source Pointer to a Null-terminated Unicode string.
|
||||||
@ -277,12 +279,13 @@ StrCmp (
|
|||||||
If Length > 0 and FirstString is not aligned on a 16-bit boundary, then ASSERT().
|
If Length > 0 and FirstString is not aligned on a 16-bit boundary, then ASSERT().
|
||||||
If Length > 0 and SecondString is NULL, then ASSERT().
|
If Length > 0 and SecondString is NULL, then ASSERT().
|
||||||
If Length > 0 and SecondString is not aligned on a 16-bit boundary, then ASSERT().
|
If Length > 0 and SecondString is not aligned on a 16-bit boundary, then ASSERT().
|
||||||
If PcdMaximumUnicodeStringLength is not zero, and FirstString contains more
|
If PcdMaximumUnicodeStringLength is not zero, and Length is greater than
|
||||||
than PcdMaximumUnicodeStringLength Unicode characters, not including the
|
PcdMaximumUnicodeStringLength, then ASSERT().
|
||||||
Null-terminator, then ASSERT().
|
If PcdMaximumUnicodeStringLength is not zero, and FirstString contains more than
|
||||||
If PcdMaximumUnicodeStringLength is not zero, and SecondString contains more
|
PcdMaximumUnicodeStringLength Unicode characters, not including the Null-terminator,
|
||||||
than PcdMaximumUnicodeStringLength Unicode characters, not including the
|
then ASSERT().
|
||||||
Null-terminator, and Length is greater than PcdMaximumUnicodeStringLength,
|
If PcdMaximumUnicodeStringLength is not zero, and SecondString contains more than
|
||||||
|
PcdMaximumUnicodeStringLength Unicode characters, not including the Null-terminator,
|
||||||
then ASSERT().
|
then ASSERT().
|
||||||
|
|
||||||
@param FirstString Pointer to a Null-terminated Unicode string.
|
@param FirstString Pointer to a Null-terminated Unicode string.
|
||||||
@ -394,6 +397,8 @@ StrCat (
|
|||||||
If Length > 0 and Source is NULL, then ASSERT().
|
If Length > 0 and Source is NULL, then ASSERT().
|
||||||
If Length > 0 and Source is not aligned on a 16-bit boundary, then ASSERT().
|
If Length > 0 and Source is not aligned on a 16-bit boundary, then ASSERT().
|
||||||
If Source and Destination overlap, then ASSERT().
|
If Source and Destination overlap, then ASSERT().
|
||||||
|
If PcdMaximumUnicodeStringLength is not zero, and Length is greater than
|
||||||
|
PcdMaximumUnicodeStringLength, then ASSERT().
|
||||||
If PcdMaximumUnicodeStringLength is not zero, and Destination contains more
|
If PcdMaximumUnicodeStringLength is not zero, and Destination contains more
|
||||||
than PcdMaximumUnicodeStringLength Unicode characters, not including the
|
than PcdMaximumUnicodeStringLength Unicode characters, not including the
|
||||||
Null-terminator, then ASSERT().
|
Null-terminator, then ASSERT().
|
||||||
@ -401,10 +406,8 @@ StrCat (
|
|||||||
PcdMaximumUnicodeStringLength Unicode characters, not including the
|
PcdMaximumUnicodeStringLength Unicode characters, not including the
|
||||||
Null-terminator, then ASSERT().
|
Null-terminator, then ASSERT().
|
||||||
If PcdMaximumUnicodeStringLength is not zero, and concatenating Destination
|
If PcdMaximumUnicodeStringLength is not zero, and concatenating Destination
|
||||||
and Source results in a Unicode string with more than
|
and Source results in a Unicode string with more than PcdMaximumUnicodeStringLength
|
||||||
PcdMaximumUnicodeStringLength Unicode characters, not including the
|
Unicode characters, not including the Null-terminator, then ASSERT().
|
||||||
Null-terminator, and Length is greater than PcdMaximumUnicodeStringLength,
|
|
||||||
then ASSERT().
|
|
||||||
|
|
||||||
@param Destination Pointer to a Null-terminated Unicode string.
|
@param Destination Pointer to a Null-terminated Unicode string.
|
||||||
@param Source Pointer to a Null-terminated Unicode string.
|
@param Source Pointer to a Null-terminated Unicode string.
|
||||||
@ -1142,9 +1145,11 @@ AsciiStrCpy (
|
|||||||
If Destination is NULL, then ASSERT().
|
If Destination is NULL, then ASSERT().
|
||||||
If Source is NULL, then ASSERT().
|
If Source is NULL, then ASSERT().
|
||||||
If Source and Destination overlap, then ASSERT().
|
If Source and Destination overlap, then ASSERT().
|
||||||
|
If PcdMaximumAsciiStringLength is not zero, and Length is greater than
|
||||||
|
PcdMaximumAsciiStringLength, then ASSERT().
|
||||||
If PcdMaximumAsciiStringLength is not zero, and Source contains more than
|
If PcdMaximumAsciiStringLength is not zero, and Source contains more than
|
||||||
PcdMaximumAsciiStringLength ASCII characters, not including the Null-terminator,
|
PcdMaximumAsciiStringLength ASCII characters, not including the Null-terminator,
|
||||||
and Length is greater than PcdMaximumAsciiStringLength, then ASSERT().
|
then ASSERT().
|
||||||
|
|
||||||
@param Destination Pointer to a Null-terminated ASCII string.
|
@param Destination Pointer to a Null-terminated ASCII string.
|
||||||
@param Source Pointer to a Null-terminated ASCII string.
|
@param Source Pointer to a Null-terminated ASCII string.
|
||||||
@ -1424,12 +1429,14 @@ AsciiStriCmp (
|
|||||||
|
|
||||||
If Length > 0 and FirstString is NULL, then ASSERT().
|
If Length > 0 and FirstString is NULL, then ASSERT().
|
||||||
If Length > 0 and SecondString is NULL, then ASSERT().
|
If Length > 0 and SecondString is NULL, then ASSERT().
|
||||||
If PcdMaximumAsciiStringLength is not zero and FirstString contains more than
|
If PcdMaximumAsciiStringLength is not zero, and Length is greater than
|
||||||
|
PcdMaximumAsciiStringLength, then ASSERT().
|
||||||
|
If PcdMaximumAsciiStringLength is not zero, and FirstString contains more than
|
||||||
PcdMaximumAsciiStringLength ASCII characters, not including the Null-terminator,
|
PcdMaximumAsciiStringLength ASCII characters, not including the Null-terminator,
|
||||||
then ASSERT().
|
then ASSERT().
|
||||||
If PcdMaximumAsciiStringLength is not zero and SecondString contains more than
|
If PcdMaximumAsciiStringLength is not zero, and SecondString contains more than
|
||||||
PcdMaximumAsciiStringLength ASCII characters, not including the Null-terminator,
|
PcdMaximumAsciiStringLength ASCII characters, not including the Null-terminator,
|
||||||
and Length is greater than PcdMaximumAsciiStringLength, then ASSERT().
|
then ASSERT().
|
||||||
|
|
||||||
@param FirstString Pointer to a Null-terminated ASCII string.
|
@param FirstString Pointer to a Null-terminated ASCII string.
|
||||||
@param SecondString Pointer to a Null-terminated ASCII string.
|
@param SecondString Pointer to a Null-terminated ASCII string.
|
||||||
@ -1531,6 +1538,8 @@ AsciiStrCat (
|
|||||||
If Length > 0 and Destination is NULL, then ASSERT().
|
If Length > 0 and Destination is NULL, then ASSERT().
|
||||||
If Length > 0 and Source is NULL, then ASSERT().
|
If Length > 0 and Source is NULL, then ASSERT().
|
||||||
If Source and Destination overlap, then ASSERT().
|
If Source and Destination overlap, then ASSERT().
|
||||||
|
If PcdMaximumAsciiStringLength is not zero, and Length is greater than
|
||||||
|
PcdMaximumAsciiStringLength, then ASSERT().
|
||||||
If PcdMaximumAsciiStringLength is not zero, and Destination contains more than
|
If PcdMaximumAsciiStringLength is not zero, and Destination contains more than
|
||||||
PcdMaximumAsciiStringLength ASCII characters, not including the Null-terminator,
|
PcdMaximumAsciiStringLength ASCII characters, not including the Null-terminator,
|
||||||
then ASSERT().
|
then ASSERT().
|
||||||
@ -1539,8 +1548,7 @@ AsciiStrCat (
|
|||||||
then ASSERT().
|
then ASSERT().
|
||||||
If PcdMaximumAsciiStringLength is not zero, and concatenating Destination and
|
If PcdMaximumAsciiStringLength is not zero, and concatenating Destination and
|
||||||
Source results in a ASCII string with more than PcdMaximumAsciiStringLength
|
Source results in a ASCII string with more than PcdMaximumAsciiStringLength
|
||||||
ASCII characters, not including the Null-terminator, and Length is greater than
|
ASCII characters, not including the Null-terminator, then ASSERT().
|
||||||
PcdMaximumAsciiStringLength, then ASSERT()..
|
|
||||||
|
|
||||||
@param Destination Pointer to a Null-terminated ASCII string.
|
@param Destination Pointer to a Null-terminated ASCII string.
|
||||||
@param Source Pointer to a Null-terminated ASCII string.
|
@param Source Pointer to a Null-terminated ASCII string.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user