Home | History | Annotate | Download | only in UefiLib

Lines Matching refs:Format

45   If Format is NULL, then ASSERT().

46 If Format is not aligned on a 16-bit boundary, then ASSERT().
48 @param Format A Null-terminated Unicode format string.
57 IN CONST CHAR16 *Format,
67 ASSERT (Format != NULL);
68 ASSERT (((UINTN) Format & BIT0) == 0);
76 Return = UnicodeVSPrint (Buffer, BufferSize, Format, Marker);
102 If Format is NULL, then ASSERT().
103 If Format is not aligned on a 16-bit boundary, then ASSERT().
106 @param Format A Null-terminated Unicode format string.
108 on the format string specified by Format.
116 IN CONST CHAR16 *Format,
123 VA_START (Marker, Format);
125 Return = InternalPrint (Format, gST->ConOut, Marker);
141 If Format is NULL, then ASSERT().
142 If Format is not aligned on a 16-bit boundary, then ASSERT().
145 @param Format A Null-terminated Unicode format string.
147 on the format string specified by Format.
155 IN CONST CHAR16 *Format,
162 VA_START (Marker, Format);
164 Return = InternalPrint( Format, gST->StdErr, Marker);
181 If Format is NULL, then ASSERT().
183 @param Format A Null-terminated ASCII format string.
193 IN CONST CHAR8 *Format,
203 ASSERT (Format != NULL);
211 Return = UnicodeVSPrintAsciiFormat (Buffer, BufferSize, Format, Marker);
237 If Format is NULL, then ASSERT().
240 @param Format A Null-terminated ASCII format string.
242 on the format string specified by Format.
250 IN CONST CHAR8 *Format,
256 ASSERT (Format != NULL);
258 VA_START (Marker, Format);
260 Return = AsciiInternalPrint( Format, gST->ConOut, Marker);
276 If Format is NULL, then ASSERT().
279 @param Format A Null-terminated ASCII format string.
281 on the format string specified by Format.
289 IN CONST CHAR8 *Format,
296 ASSERT (Format != NULL);
298 VA_START (Marker, Format);
300 Return = AsciiInternalPrint( Format, gST->StdErr, Marker);
569 format including the set of control codes supported by the StringToImage() service.
575 If Format is NULL, then ASSERT().
576 If Format is not aligned on a 16-bit boundary, then ASSERT().
589 @param Format A Null-terminated Unicode format string. See Print Library
590 for the supported format string syntax.
592 the format string specified by Format.
604 IN CONST CHAR16 *Format,
614 ASSERT (Format != NULL);
615 ASSERT (((UINTN) Format & BIT0) == 0);
617 VA_START (Marker, Format);
624 PrintNum = UnicodeVSPrint (Buffer, BufferSize, Format, Marker);
649 format including the set of control codes supported by the StringToImage() service.
655 If Format is NULL, then ASSERT().
668 @param Format A Null-terminated ASCII format string. See Print Library
669 for the supported format string syntax.
671 the format string specified by Format.
683 IN CONST CHAR8 *Format,
693 ASSERT (Format != NULL);
695 VA_START (Marker, Format);
702 PrintNum = UnicodeSPrintAsciiFormat (Buffer, BufferSize, Format, Marker);
727 @param[in] FormatString A Null-terminated Unicode format string.
790 @param[in] FormatString A Null-terminated Unicode format string.
792 accessed based on the format string specified by