Home | History | Annotate | Download | only in UefiLib

Lines Matching full:console

38   Internal function which prints a formatted Unicode string to the console output device

39 specified by Console
41 This function prints a formatted Unicode string to the console output device
42 specified by Console and returns the number of Unicode characters that printed
44 then only the first PcdUefiLibMaxPrintBufferSize characters are sent to Console.
49 @param Console The output console.
58 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *Console,
69 ASSERT (Console != NULL);
78 if (Console != NULL && Return > 0) {
80 // To be extra safe make sure Console has been initialized
82 Status = Console->OutputString (Console, Buffer);
94 Prints a formatted Unicode string to the console output device specified by
97 This function prints a formatted Unicode string to the console output device
133 Prints a formatted Unicode string to the console output device specified by
136 This function prints a formatted Unicode string to the console output device
173 Internal function which prints a formatted ASCII string to the console output device
174 specified by Console
176 This function prints a formatted ASCII string to the console output device
177 specified by Console and returns the number of ASCII characters that printed
179 then only the first PcdUefiLibMaxPrintBufferSize characters are sent to Console.
184 @param Console The output console.
194 IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *Console,
204 ASSERT (Console != NULL);
213 if (Console != NULL) {
215 // To be extra safe make sure Console has been initialized
217 Status = Console->OutputString (Console, Buffer);
229 Prints a formatted ASCII string to the console output device specified by
232 This function prints a formatted ASCII string to the console output device
268 Prints a formatted ASCII string to the console output device specified by
271 This function prints a formatted ASCII string to the console output device
308 Internal function to print a formatted Unicode string to a graphics console device specified by
311 This function prints a formatted Unicode string to the graphics console device
318 If a graphics console device is not associated with the ConsoleOutputHandle
556 Prints a formatted Unicode string to a graphics console device specified by
559 This function prints a formatted Unicode string to the graphics console device
571 If a graphics console device is not associated with the ConsoleOutputHandle
636 Prints a formatted ASCII string to a graphics console device specified by
639 This function prints a formatted ASCII string to the graphics console device
651 If a graphics console device is not associated with the ConsoleOutputHandle