Home | History | Annotate | Download | only in UefiLib

Lines Matching refs:FormatString

723   If FormatString is NULL, then ASSERT().

724 If FormatString is not aligned on a 16-bit boundary, then ASSERT().
727 @param[in] FormatString A Null-terminated Unicode format string.
738 IN CONST CHAR16 *FormatString,
748 CharactersRequired = SPrintLength(FormatString, ExtraMarker);
769 UnicodeVSPrint(BufferToReturn + StrLen(BufferToReturn), (CharactersRequired+1) * sizeof(CHAR16), FormatString, Marker);
786 If FormatString is NULL, then ASSERT().
787 If FormatString is not aligned on a 16-bit boundary, then ASSERT().
790 @param[in] FormatString A Null-terminated Unicode format string.
793 FormatString.
803 IN CONST CHAR16 *FormatString,
810 VA_START (Marker, FormatString);
811 NewString = CatVSPrint(String, FormatString, Marker);