Lines Matching full:is

15      - '\\r' is translated to '\\r'
16 - '\\r\\n' is translated to '\\r\\n'
17 - '\\n' is translated to '\\r\\n'
18 - '\\n\\r' is translated to '\\r\\n'
21 descriptors is described below. The ANSI C standard for sprint() has been
29 - The field is left justified. If not flag is not specified, then the
30 field is right justified.
35 If both space and + are specified, then space is ignored.
41 If 0 is also specified, then 0 is ignored.
43 - The number being printed is size UINT64. Only valid for types X, x, and d.
44 If this flag is not specified, then the number being printed is size int.
50 - The width of the field is specified by a UINTN argument in the
55 - NOTE: If [width] is not specified, then a field width of 0 is assumed.
60 - The precision of the field is specified by a UINTN argument in the
65 - NOTE: If [.precision] is not specified, then a precision of 0 is assumed.
72 - The argument is a Unicode character. ASCII characters can be printed
75 - The argument is an unsigned hexadecimal number. The characters used are 0..9 and
76 A..F. If the flag 'L' is not specified, then the argument is assumed
79 - The argument is an unsigned hexadecimal number and the number is padded with
80 zeros. This is equivalent to a format string of "0x". If the flag
81 'L' is not specified, then the argument is assumed to be size int.
84 - The argument is a signed decimal number. If the flag 'L' is not specified,
85 then the argument is assumed to be size int.
87 - The argument is a unsigned decimal number. If the flag 'L' is not specified,
88 then the argument is assumed to be size int.
90 - The argument is a pointer that is a (VOID *), and it is printed as an
93 - The argument is a pointer to an ASCII string.
96 - The argument is a pointer to a Unicode string.
99 - The argument is a pointer to a GUID structure. The GUID is printed
103 - The argument is a pointer to an EFI_TIME structure. The time and
104 date are printed in the format "mm/dd/yyyy hh:mm" where mm is the
105 month zero padded, dd is the day zero padded, yyyy is the year zero
106 padded, hh is the hour zero padded, and mm is minutes zero padded.
109 - The argument is a RETURN_STATUS value. This value is converted to
204 This function is similar as vsnprintf_s defined in C11.
208 The Unicode string is produced by parsing the format string specified by FormatString.
211 The number of Unicode characters in the produced output buffer is returned not including
214 If StartOfBuffer is not aligned on a 16-bit boundary, then ASSERT().
215 If FormatString is not aligned on a 16-bit boundary, then ASSERT().
217 If BufferSize > 1 and StartOfBuffer is NULL, then ASSERT(). Also, the output buffer is
218 unmodified and 0 is returned.
219 If BufferSize > 1 and FormatString is NULL, then ASSERT(). Also, the output buffer is
220 unmodified and 0 is returned.
221 If PcdMaximumUnicodeStringLength is not zero, and BufferSize >
223 buffer is unmodified and 0 is returned.
224 If PcdMaximumUnicodeStringLength is not zero, and FormatString contains more than
226 ASSERT(). Also, the output buffer is unmodified and 0 is returned.
228 If BufferSize is 0 or 1, then the output buffer is unmodified and 0 is returned.
255 The Unicode string is produced by parsing the format string specified by FormatString.
258 The number of Unicode characters in the produced output buffer is returned not including
261 If StartOfBuffer is not aligned on a 16-bit boundary, then ASSERT().
262 If FormatString is not aligned on a 16-bit boundary, then ASSERT().
264 If BufferSize > 1 and StartOfBuffer is NULL, then ASSERT(). Also, the output buffer is
265 unmodified and 0 is returned.
266 If BufferSize > 1 and FormatString is NULL, then ASSERT(). Also, the output buffer is
267 unmodified and 0 is returned.
268 If PcdMaximumUnicodeStringLength is not zero, and BufferSize >
270 buffer is unmodified and 0 is returned.
271 If PcdMaximumUnicodeStringLength is not zero, and FormatString contains more than
273 ASSERT(). Also, the output buffer is unmodified and 0 is returned.
275 If BufferSize is 0 or 1, then the output buffer is unmodified and 0 is returned.
300 This function is similar as snprintf_s defined in C11.
304 The Unicode string is produced by parsing the format string specified by FormatString.
306 The number of Unicode characters in the produced output buffer is returned not including
309 If StartOfBuffer is not aligned on a 16-bit boundary, then ASSERT().
310 If FormatString is not aligned on a 16-bit boundary, then ASSERT().
312 If BufferSize > 1 and StartOfBuffer is NULL, then ASSERT(). Also, the output buffer is
313 unmodified and 0 is returned.
314 If BufferSize > 1 and FormatString is NULL, then ASSERT(). Also, the output buffer is
315 unmodified and 0 is returned.
316 If PcdMaximumUnicodeStringLength is not zero, and BufferSize >
318 buffer is unmodified and 0 is returned.
319 If PcdMaximumUnicodeStringLength is not zero, and FormatString contains more than
321 ASSERT(). Also, the output buffer is unmodified and 0 is returned.
323 If BufferSize is 0 or 1, then the output buffer is unmodified and 0 is returned.
349 This function is similar as vsnprintf_s defined in C11.
353 The Unicode string is produced by parsing the format string specified by FormatString.
356 The number of Unicode characters in the produced output buffer is returned not including
359 If StartOfBuffer is not aligned on a 16-bit boundary, then ASSERT().
361 If BufferSize > 1 and StartOfBuffer is NULL, then ASSERT(). Also, the output buffer is
362 unmodified and 0 is returned.
363 If BufferSize > 1 and FormatString is NULL, then ASSERT(). Also, the output buffer is
364 unmodified and 0 is returned.
365 If PcdMaximumUnicodeStringLength is not zero, and BufferSize >
367 buffer is unmodified and 0 is returned.
368 If PcdMaximumAsciiStringLength is not zero, and FormatString contains more than
370 ASSERT(). Also, the output buffer is unmodified and 0 is returned.
372 If BufferSize is 0 or 1, then no output buffer is produced and 0 is returned.
399 The Unicode string is produced by parsing the format string specified by FormatString.
402 The number of Unicode characters in the produced output buffer is returned not including
405 If StartOfBuffer is not aligned on a 16-bit boundary, then ASSERT().
407 If BufferSize > 1 and StartOfBuffer is NULL, then ASSERT(). Also, the output buffer is
408 unmodified and 0 is returned.
409 If BufferSize > 1 and FormatString is NULL, then ASSERT(). Also, the output buffer is
410 unmodified and 0 is returned.
411 If PcdMaximumUnicodeStringLength is not zero, and BufferSize >
413 buffer is unmodified and 0 is returned.
414 If PcdMaximumAsciiStringLength is not zero, and FormatString contains more than
416 ASSERT(). Also, the output buffer is unmodified and 0 is returned.
418 If BufferSize is 0 or 1, then no output buffer is produced and 0 is returned.
443 This function is similar as snprintf_s defined in C11.
447 The Unicode string is produced by parsing the format string specified by FormatString.
450 The number of Unicode characters in the produced output buffer is returned not including
453 If StartOfBuffer is not aligned on a 16-bit boundary, then ASSERT().
455 If BufferSize > 1 and StartOfBuffer is NULL, then ASSERT(). Also, the output buffer is
456 unmodified and 0 is returned.
457 If BufferSize > 1 and FormatString is NULL, then ASSERT(). Also, the output buffer is
458 unmodified and 0 is returned.
459 If PcdMaximumUnicodeStringLength is not zero, and BufferSize >
461 buffer is unmodified and 0 is returned.
462 If PcdMaximumAsciiStringLength is not zero, and FormatString contains more than
464 ASSERT(). Also, the output buffer is unmodified and 0 is returned.
466 If BufferSize is 0 or 1, then no output buffer is produced and 0 is returned.
491 [ATTENTION] This function is deprecated for security reason.
497 is ever performed. If Width is 0 then a width of MAXIMUM_VALUE_CHARACTERS is assumed.
498 The number of Unicode characters in Buffer is returned, not including the Null-terminator.
501 required to perform the conversion is returned.
504 The Flags bit LEFT_JUSTIFY is always ignored.
506 If Width is 0, PREFIX_ZERO is ignored in Flags.
507 If COMMA_TYPE is set in Flags, then PREFIX_ZERO is ignored in Flags, and commas
509 If RADIX_HEX is set in Flags, then the output buffer will be
511 If Value is < 0 and RADIX_HEX is not set in Flags, then the fist character in Buffer is a '-'.
512 If PREFIX_ZERO is set in Flags and PREFIX_ZERO is not being ignored,
513 then Buffer is padded with '0' characters so the combination of the optional '-'
517 If Buffer is NULL, then ASSERT().
518 If Buffer is not aligned on a 16-bit boundary, then ASSERT().
549 spaces is ever performed. If Width is 0 then a width of
550 MAXIMUM_VALUE_CHARACTERS is assumed. If the conversion contains more than
554 The Flags bit LEFT_JUSTIFY is always ignored.
556 If Width is 0, PREFIX_ZERO is ignored in Flags.
557 If COMMA_TYPE is set in Flags, then PREFIX_ZERO is ignored in Flags, and
559 If RADIX_HEX is set in Flags, then the output buffer will be formatted in
561 If Value is < 0 and RADIX_HEX is not set in Flags, then the fist character in
562 Buffer is a '-'.
563 If PREFIX_ZERO is set in Flags and PREFIX_ZERO is not being ignored, then
564 Buffer is padded with '0' characters so the combination of the optional '-'
568 If Buffer is not aligned on a 16-bit boundary, then ASSERT().
581 @retval RETURN_SUCCESS The decimal value is converted.
584 @retval RETURN_INVALID_PARAMETER If Buffer is NULL.
585 If PcdMaximumUnicodeStringLength is not
586 zero, and BufferSize is greater than
609 This function is similar as vsnprintf_s defined in C11.
613 The ASCII string is produced by parsing the format string specified by FormatString.
616 The number of ASCII characters in the produced output buffer is returned not including
619 If BufferSize > 0 and StartOfBuffer is NULL, then ASSERT(). Also, the output buffer is
620 unmodified and 0 is returned.
621 If BufferSize > 0 and FormatString is NULL, then ASSERT(). Also, the output buffer is
622 unmodified and 0 is returned.
623 If PcdMaximumAsciiStringLength is not zero, and BufferSize >
625 is unmodified and 0 is returned.
626 If PcdMaximumAsciiStringLength is not zero, and FormatString contains more than
628 ASSERT(). Also, the output buffer is unmodified and 0 is returned.
630 If BufferSize is 0, then no output buffer is produced and 0 is returned.
657 The ASCII string is produced by parsing the format string specified by FormatString.
660 The number of ASCII characters in the produced output buffer is returned not including
663 If BufferSize > 0 and StartOfBuffer is NULL, then ASSERT(). Also, the output buffer is
664 unmodified and 0 is returned.
665 If BufferSize > 0 and FormatString is NULL, then ASSERT(). Also, the output buffer is
666 unmodified and 0 is returned.
667 If PcdMaximumAsciiStringLength is not zero, and BufferSize >
669 is unmodified and 0 is returned.
670 If PcdMaximumAsciiStringLength is not zero, and FormatString contains more than
672 ASSERT(). Also, the output buffer is unmodified and 0 is returned.
674 If BufferSize is 0, then no output buffer is produced and 0 is returned.
699 This function is similar as snprintf_s defined in C11.
703 The ASCII string is produced by parsing the format string specified by FormatString.
706 The number of ASCII characters in the produced output buffer is returned not including
709 If BufferSize > 0 and StartOfBuffer is NULL, then ASSERT(). Also, the output buffer is
710 unmodified and 0 is returned.
711 If BufferSize > 0 and FormatString is NULL, then ASSERT(). Also, the output buffer is
712 unmodified and 0 is returned.
713 If PcdMaximumAsciiStringLength is not zero, and BufferSize >
715 is unmodified and 0 is returned.
716 If PcdMaximumAsciiStringLength is not zero, and FormatString contains more than
718 ASSERT(). Also, the output buffer is unmodified and 0 is returned.
720 If BufferSize is 0, then no output buffer is produced and 0 is returned.
746 This function is similar as vsnprintf_s defined in C11.
750 The ASCII string is produced by parsing the format string specified by FormatString.
753 The number of ASCII characters in the produced output buffer is returned not including
756 If FormatString is not aligned on a 16-bit boundary, then ASSERT().
758 If BufferSize > 0 and StartOfBuffer is NULL, then ASSERT(). Also, the output buffer is
759 unmodified and 0 is returned.
760 If BufferSize > 0 and FormatString is NULL, then ASSERT(). Also, the output buffer is
761 unmodified and 0 is returned.
762 If PcdMaximumAsciiStringLength is not zero, and BufferSize >
764 is unmodified and 0 is returned.
765 If PcdMaximumUnicodeStringLength is not zero, and FormatString contains more than
767 ASSERT(). Also, the output buffer is unmodified and 0 is returned.
769 If BufferSize is 0, then no output buffer is produced and 0 is returned.
796 The ASCII string is produced by parsing the format string specified by FormatString.
799 The number of ASCII characters in the produced output buffer is returned not including
802 If FormatString is not aligned on a 16-bit boundary, then ASSERT().
804 If BufferSize > 0 and StartOfBuffer is NULL, then ASSERT(). Also, the output buffer is
805 unmodified and 0 is returned.
806 If BufferSize > 0 and FormatString is NULL, then ASSERT(). Also, the output buffer is
807 unmodified and 0 is returned.
808 If PcdMaximumAsciiStringLength is not zero, and BufferSize >
810 is unmodified and 0 is returned.
811 If PcdMaximumUnicodeStringLength is not zero, and FormatString contains more than
813 ASSERT(). Also, the output buffer is unmodified and 0 is returned.
815 If BufferSize is 0, then no output buffer is produced and 0 is returned.
840 This function is similar as snprintf_s defined in C11.
844 The ASCII string is produced by parsing the format string specified by FormatString.
847 The number of ASCII characters in the produced output buffer is returned not including
850 If FormatString is not aligned on a 16-bit boundary, then ASSERT().
852 If BufferSize > 0 and StartOfBuffer is NULL, then ASSERT(). Also, the output buffer is
853 unmodified and 0 is returned.
854 If BufferSize > 0 and FormatString is NULL, then ASSERT(). Also, the output buffer is
855 unmodified and 0 is returned.
856 If PcdMaximumAsciiStringLength is not zero, and BufferSize >
858 is unmodified and 0 is returned.
859 If PcdMaximumUnicodeStringLength is not zero, and FormatString contains more than
861 ASSERT(). Also, the output buffer is unmodified and 0 is returned.
863 If BufferSize is 0, then no output buffer is produced and 0 is returned.
888 [ATTENTION] This function is deprecated for security reason.
894 is ever performed.
895 If Width is 0 then a width of MAXIMUM_VALUE_CHARACTERS is assumed.
896 The number of ASCII characters in Buffer is returned, not including the Null-terminator.
899 the conversion is returned.
901 The Flags bit LEFT_JUSTIFY is always ignored.
903 If Width is 0, PREFIX_ZERO is ignored in Flags.
904 If COMMA_TYPE is set in Flags, then PREFIX_ZERO is ignored in Flags, and commas
906 If RADIX_HEX is set in Flags, then the output buffer will be
908 If Value is < 0 and RADIX_HEX is not set in Flags, then the fist character in Buffer is a '-'.
909 If PREFIX_ZERO is set in Flags and PREFIX_ZERO is not being ignored,
910 then Buffer is padded with '0' characters so the combination of the optional '-'
914 If Buffer is NULL, then ASSERT().
945 spaces is ever performed. If Width is 0 then a width of
946 MAXIMUM_VALUE_CHARACTERS is assumed. If the conversion contains more than
950 The Flags bit LEFT_JUSTIFY is always ignored.
952 If Width is 0, PREFIX_ZERO is ignored in Flags.
953 If COMMA_TYPE is set in Flags, then PREFIX_ZERO is ignored in Flags, and
955 If RADIX_HEX is set in Flags, then the output buffer will be formatted in
957 If Value is < 0 and RADIX_HEX is not set in Flags, then the fist character in
958 Buffer is a '-'.
959 If PREFIX_ZERO is set in Flags and PREFIX_ZERO is not being ignored, then
960 Buffer is padded with '0' characters so the combination of the optional '-'
976 @retval RETURN_SUCCESS The decimal value is converted.
979 @retval RETURN_INVALID_PARAMETER If Buffer is NULL.
980 If PcdMaximumAsciiStringLength is not
981 zero, and BufferSize is greater than
1003 If FormatString is not aligned on a 16-bit boundary, then ASSERT().
1005 If FormatString is NULL, then ASSERT() and 0 is returned.
1006 If PcdMaximumUnicodeStringLength is not zero, and FormatString contains more
1008 Null-terminator, then ASSERT() and 0 is returned.
1027 If FormatString is NULL, then ASSERT() and 0 is returned.
1028 If PcdMaximumAsciiStringLength is not zero, and FormatString contains more
1030 Null-terminator, then ASSERT() and 0 is returned.