Home | History | Annotate | Download | only in BasePrintLib

Lines Matching refs:FormatString

34   The Unicode string is produced by parsing the format string specified by FormatString.  

43 If BufferSize > 1 and FormatString is NULL, then ASSERT().
44 If BufferSize > 1 and FormatString is not aligned on a 16-bit boundary, then ASSERT().
45 If PcdMaximumUnicodeStringLength is not zero, and FormatString contains more than
55 @param FormatString A Null-terminated Unicode format string.
67 IN CONST CHAR16 *FormatString,
72 ASSERT_UNICODE_BUFFER (FormatString);
73 return BasePrintLibSPrintMarker ((CHAR8 *)StartOfBuffer, BufferSize >> 1, FORMAT_UNICODE | OUTPUT_UNICODE, (CHAR8 *)FormatString, Marker, NULL);
82 The Unicode string is produced by parsing the format string specified by FormatString.
91 If BufferSize > 1 and FormatString is NULL, then ASSERT().
92 If BufferSize > 1 and FormatString is not aligned on a 16-bit boundary, then ASSERT().
93 If PcdMaximumUnicodeStringLength is not zero, and FormatString contains more than
103 @param FormatString A Null-terminated Unicode format string.
115 IN CONST CHAR16 *FormatString,
120 ASSERT_UNICODE_BUFFER (FormatString);
121 return BasePrintLibSPrintMarker ((CHAR8 *)StartOfBuffer, BufferSize >> 1, FORMAT_UNICODE | OUTPUT_UNICODE, (CHAR8 *)FormatString, gNullVaList, Marker);
130 The Unicode string is produced by parsing the format string specified by FormatString.
138 If BufferSize > 1 and FormatString is NULL, then ASSERT().
139 If BufferSize > 1 and FormatString is not aligned on a 16-bit boundary, then ASSERT().
140 If PcdMaximumUnicodeStringLength is not zero, and FormatString contains more than
150 @param FormatString A Null-terminated Unicode format string.
152 format string specified by FormatString.
163 IN CONST CHAR16 *FormatString,
170 VA_START (Marker, FormatString);
171 NumberOfPrinted = UnicodeVSPrint (StartOfBuffer, BufferSize, FormatString, Marker);
182 The Unicode string is produced by parsing the format string specified by FormatString.
191 If BufferSize > 1 and FormatString is NULL, then ASSERT().
192 If PcdMaximumAsciiStringLength is not zero, and FormatString contains more than
202 @param FormatString A Null-terminated ASCII format string.
214 IN CONST CHAR8 *FormatString,
219 return BasePrintLibSPrintMarker ((CHAR8 *)StartOfBuffer, BufferSize >> 1, OUTPUT_UNICODE, FormatString, Marker, NULL);
228 The Unicode string is produced by parsing the format string specified by FormatString.
237 If BufferSize > 1 and FormatString is NULL, then ASSERT().
238 If PcdMaximumAsciiStringLength is not zero, and FormatString contains more than
248 @param FormatString A Null-terminated ASCII format string.
260 IN CONST CHAR8 *FormatString,
265 return BasePrintLibSPrintMarker ((CHAR8 *)StartOfBuffer, BufferSize >> 1, OUTPUT_UNICODE, FormatString, gNullVaList, Marker);
274 The Unicode string is produced by parsing the format string specified by FormatString.
283 If BufferSize > 1 and FormatString is NULL, then ASSERT().
284 If PcdMaximumAsciiStringLength is not zero, and FormatString contains more than
294 @param FormatString A Null-terminated ASCII format string.
296 format string specified by FormatString.
307 IN CONST CHAR8 *FormatString,
314 VA_START (Marker, FormatString);
315 NumberOfPrinted = UnicodeVSPrintAsciiFormat (StartOfBuffer, BufferSize, FormatString, Marker);
380 The ASCII string is produced by parsing the format string specified by FormatString.
388 If BufferSize > 0 and FormatString is NULL, then ASSERT().
389 If PcdMaximumAsciiStringLength is not zero, and FormatString contains more than
399 @param FormatString A Null-terminated ASCII format string.
411 IN CONST CHAR8 *FormatString,
415 return BasePrintLibSPrintMarker (StartOfBuffer, BufferSize, 0, FormatString, Marker, NULL);
424 The ASCII string is produced by parsing the format string specified by FormatString.
432 If BufferSize > 0 and FormatString is NULL, then ASSERT().
433 If PcdMaximumAsciiStringLength is not zero, and FormatString contains more than
443 @param FormatString A Null-terminated ASCII format string.
455 IN CONST CHAR8 *FormatString,
459 return BasePrintLibSPrintMarker (StartOfBuffer, BufferSize, 0, FormatString, gNullVaList, Marker);
468 The ASCII string is produced by parsing the format string specified by FormatString.
476 If BufferSize > 0 and FormatString is NULL, then ASSERT().
477 If PcdMaximumAsciiStringLength is not zero, and FormatString contains more than
487 @param FormatString A Null-terminated ASCII format string.
489 format string specified by FormatString.
500 IN CONST CHAR8 *FormatString,
507 VA_START (Marker, FormatString);
508 NumberOfPrinted = AsciiVSPrint (StartOfBuffer, BufferSize, FormatString, Marker);
519 The ASCII string is produced by parsing the format string specified by FormatString.
527 If BufferSize > 0 and FormatString is NULL, then ASSERT().
528 If BufferSize > 0 and FormatString is not aligned on a 16-bit boundary, then ASSERT().
529 If PcdMaximumUnicodeStringLength is not zero, and FormatString contains more than
539 @param FormatString A Null-terminated Unicode format string.
551 IN CONST CHAR16 *FormatString,
555 ASSERT_UNICODE_BUFFER (FormatString);
556 return BasePrintLibSPrintMarker (StartOfBuffer, BufferSize, FORMAT_UNICODE, (CHAR8 *)FormatString, Marker, NULL);
565 The ASCII string is produced by parsing the format string specified by FormatString.
573 If BufferSize > 0 and FormatString is NULL, then ASSERT().
574 If BufferSize > 0 and FormatString is not aligned on a 16-bit boundary, then ASSERT().
575 If PcdMaximumUnicodeStringLength is not zero, and FormatString contains more than
585 @param FormatString A Null-terminated Unicode format string.
597 IN CONST CHAR16 *FormatString,
601 ASSERT_UNICODE_BUFFER (FormatString);
602 return BasePrintLibSPrintMarker (StartOfBuffer, BufferSize, FORMAT_UNICODE, (CHAR8 *)FormatString, gNullVaList, Marker);
611 The ASCII string is produced by parsing the format string specified by FormatString.
619 If BufferSize > 0 and FormatString is NULL, then ASSERT().
620 If BufferSize > 0 and FormatString is not aligned on a 16-bit boundary, then ASSERT().
621 If PcdMaximumUnicodeStringLength is not zero, and FormatString contains more than
631 @param FormatString A Null-terminated Unicode format string.
633 format string specified by FormatString.
644 IN CONST CHAR16 *FormatString,
651 VA_START (Marker, FormatString);
652 NumberOfPrinted = AsciiVSPrintUnicodeFormat (StartOfBuffer, BufferSize, FormatString, Marker);
714 If FormatString is NULL, then ASSERT().
715 If FormatString is not aligned on a 16-bit boundary, then ASSERT().
717 @param[in] FormatString A Null-terminated Unicode format string.
726 IN CONST CHAR16 *FormatString,
730 ASSERT(FormatString != NULL);
731 ASSERT_UNICODE_BUFFER (FormatString);
732 return BasePrintLibSPrintMarker (NULL, 0, FORMAT_UNICODE | OUTPUT_UNICODE | COUNT_ONLY_NO_PRINT, (CHAR8 *)FormatString, Marker, NULL);
739 If FormatString is NULL, then ASSERT().
741 @param[in] FormatString A Null-terminated ASCII format string.
750 IN CONST CHAR8 *FormatString,
754 ASSERT(FormatString != NULL);
755 return BasePrintLibSPrintMarker (NULL, 0, OUTPUT_UNICODE | COUNT_ONLY_NO_PRINT, (CHAR8 *)FormatString, Marker, NULL);