Searched defs:Format (Results 1 - 25 of 67) sorted by relevance

123

/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/StatusCode/Pei/
H A DSerialStatusCodeWorker.c49 CHAR8 *Format; local
72 ReportStatusCodeExtractDebugInfo (Data, &ErrorLevel, &Marker, &Format)) {
79 Format,
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/StatusCode/RuntimeDxe/
H A DSerialStatusCodeWorker.c47 CHAR8 *Format; local
70 ReportStatusCodeExtractDebugInfo (Data, &ErrorLevel, &Marker, &Format)) {
77 Format,
H A DDataHubStatusCodeWorker.c190 CHAR8 *Format; local
236 if (ReportStatusCodeExtractDebugInfo (Data, &ErrorLevel, &Marker, &Format)) {
240 Format,
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/StatusCodeHandler/Pei/
H A DSerialStatusCodeWorker.c52 CHAR8 *Format; local
75 ReportStatusCodeExtractDebugInfo (Data, &ErrorLevel, &Marker, &Format)) {
82 Format,
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/StatusCodeHandler/RuntimeDxe/
H A DSerialStatusCodeWorker.c48 CHAR8 *Format; local
71 ReportStatusCodeExtractDebugInfo (Data, &ErrorLevel, &Marker, &Format)) {
78 Format,
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/StatusCodeHandler/Smm/
H A DSerialStatusCodeWorker.c48 CHAR8 *Format; local
71 ReportStatusCodeExtractDebugInfo (Data, &ErrorLevel, &Marker, &Format)) {
78 Format,
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseDebugLibNull/
H A DDebugLib.c22 GetDebugPrintErrorLevel (), then print the message specified by Format and the
25 If Format is NULL, then ASSERT().
28 @param Format Format string for the debug message to print.
30 based on the format string specified by Format.
37 IN CONST CHAR8 *Format,
35 DebugPrint( IN UINTN ErrorLevel, IN CONST CHAR8 *Format, ... ) argument
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BaseDebugLibSerialPort/
H A DDebugLib.c54 GetDebugPrintErrorLevel (), then print the message specified by Format and the
57 If Format is NULL, then ASSERT().
60 @param Format Format string for the debug message to print.
62 based on the format string specified by Format.
69 IN CONST CHAR8 *Format,
77 // If Format is NULL, then ASSERT().
79 ASSERT (Format != NULL);
91 VA_START (Marker, Format);
92 AsciiVSPrint (Buffer, sizeof (Buffer), Format, Marke
67 DebugPrint( IN UINTN ErrorLevel, IN CONST CHAR8 *Format, ... ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiDebugLibConOut/
H A DDebugLib.c34 GetDebugPrintErrorLevel (), then print the message specified by Format and the
37 If Format is NULL, then ASSERT().
40 @param Format Format string for the debug message to print.
42 based on the format string specified by Format.
49 IN CONST CHAR8 *Format,
57 // If Format is NULL, then ASSERT().
59 ASSERT (Format != NULL);
71 VA_START (Marker, Format);
72 UnicodeVSPrintAsciiFormat (Buffer, MAX_DEBUG_MESSAGE_LENGTH, Format, Marke
47 DebugPrint( IN UINTN ErrorLevel, IN CONST CHAR8 *Format, ... ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiDebugLibStdErr/
H A DDebugLib.c36 GetDebugPrintErrorLevel (), then print the message specified by Format and the
39 If Format is NULL, then ASSERT().
42 @param Format The format string for the debug message to print.
44 based on the format string specified by Format.
51 IN CONST CHAR8 *Format,
59 // If Format is NULL, then ASSERT().
61 ASSERT (Format != NULL);
73 VA_START (Marker, Format);
74 UnicodeVSPrintAsciiFormat (Buffer, MAX_DEBUG_MESSAGE_LENGTH, Format, Marker);
49 DebugPrint( IN UINTN ErrorLevel, IN CONST CHAR8 *Format, ... ) argument
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Include/Common/
H A DVariableFormat.h34 UINT8 Format; member in struct:__anon10084
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/PeiDxeDebugLibReportStatusCode/
H A DDebugLib.c34 GetDebugPrintErrorLevel (), then print the message specified by Format and the
37 If Format is NULL, then ASSERT().
39 If the length of the message string specificed by Format is larger than the maximum allowable
43 @param Format Format string for the debug message to print.
45 based on the format string specified by Format.
52 IN CONST CHAR8 *Format,
65 // If Format is NULL, then ASSERT().
67 ASSERT (Format != NULL);
90 // | Format Strin
50 DebugPrint( IN UINTN ErrorLevel, IN CONST CHAR8 *Format, ... ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Universal/StatusCode/DatahubStatusCodeHandlerDxe/
H A DDataHubStatusCodeWorker.c191 CHAR8 *Format; local
222 if (ReportStatusCodeExtractDebugInfo (Data, &ErrorLevel, &Marker, &Format)) {
226 Format,
/vbox/src/VBox/Devices/EFI/Firmware/VBoxPkg/Library/VBoxDebugLib/
H A DVBoxDebugLib.c47 DebugPrint(IN UINTN ErrorLevel, IN CONST CHAR8 *Format, ...) argument
58 VA_START(va, Format);
59 cch = AsciiVSPrint(szBuf, sizeof(szBuf), Format, va);
85 * @param pszFormat Format string. EFI style!
95 /* Format it. */
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkPkg/Library/FrameworkUefiLib/
H A DUefiLibPrint.c45 If Format is NULL, then ASSERT().
46 If Format is not aligned on a 16-bit boundary, then ASSERT().
48 @param Format 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 Nul
56 InternalPrint( IN CONST CHAR16 *Format, IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *Console, IN VA_LIST Marker ) argument
115 Print( IN CONST CHAR16 *Format, ... ) argument
154 ErrorPrint( IN CONST CHAR16 *Format, ... ) argument
192 AsciiInternalPrint( IN CONST CHAR8 *Format, IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *Console, IN VA_LIST Marker ) argument
249 AsciiPrint( IN CONST CHAR8 *Format, ... ) argument
288 AsciiErrorPrint( IN CONST CHAR8 *Format, ... ) argument
599 PrintXY( IN UINTN PointX, IN UINTN PointY, IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *ForeGround, OPTIONAL IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BackGround, OPTIONAL IN CONST CHAR16 *Format, ... ) argument
678 AsciiPrintXY( IN UINTN PointX, IN UINTN PointY, IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *ForeGround, OPTIONAL IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BackGround, OPTIONAL IN CONST CHAR8 *Format, ... ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Usb/UsbMouseAbsolutePointerDxe/
H A DUsbMouseAbsolutePointer.h93 UINT16 Format; member in struct:__anon10909
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Bus/Usb/UsbMouseDxe/
H A DUsbMouse.h93 UINT16 Format; member in struct:__anon10913
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Include/Guid/
H A DVariableFormat.h65 /// Variable Store Header Format and State.
86 UINT8 Format; member in struct:__anon11023
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Acpi/AcpiTableDxe/
H A DAcpiSdt.h140 AML_OP_PARSE_FORMAT Format[6]; member in struct:_AML_BYTE_ENCODING
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Dhcp4Dxe/
H A DDhcp4Option.c153 @param[in] Format The option's format
163 IN DHCP_OPTION_FORMAT *Format,
174 switch (Format->Type) {
208 if (((Format->MinOccur != -1) && (Occur < Format->MinOccur)) ||
209 ((Format->MaxOccur != -1) && (Occur > Format->MaxOccur))
217 if (Format->Type == DHCP_OPTION_SWITCH) {
659 DHCP_OPTION_FORMAT *Format; local
688 Format
162 DhcpOptionIsValid( IN DHCP_OPTION_FORMAT *Format, IN UINT8 *OptValue, IN INTN Len ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/SetupBrowserDxe/
H A DProcessOptions.c213 CHAR16 *Format; local
245 Format = L"-%ld";
247 Format = L"%ld";
252 Format = L"%ld";
256 Format = L"%lx";
264 UnicodeSPrint (FormattedNumber, BufferSize, Format, Value);
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/BasePrintLib/
H A DPrintLibInternal.c281 parsing of Format into.
287 @param[in] Format A Null-terminated format string.
289 processing Format.
291 by processing Format.
303 IN CONST CHAR8 *Format,
383 ASSERT (StrSize ((CHAR16 *) Format) != 0);
391 ASSERT (AsciiStrSize (Format) != 0);
399 FormatCharacter = ((*Format & 0xff) | (*(Format + 1) << 8)) & FormatMask;
427 Format
299 BasePrintLibSPrintMarker( OUT CHAR8 *Buffer, IN UINTN BufferSize, IN UINTN Flags, IN CONST CHAR8 *Format, IN VA_LIST VaListMarker, OPTIONAL IN BASE_LIST BaseListMarker OPTIONAL ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/MdePkg/Library/UefiLib/
H A DUefiLibPrint.c45 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
56 InternalPrint( IN CONST CHAR16 *Format, IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *Console, IN VA_LIST Marker ) argument
115 Print( IN CONST CHAR16 *Format, ... ) argument
154 ErrorPrint( IN CONST CHAR16 *Format, ... ) argument
192 AsciiInternalPrint( IN CONST CHAR8 *Format, IN EFI_SIMPLE_TEXT_OUTPUT_PROTOCOL *Console, IN VA_LIST Marker ) argument
249 AsciiPrint( IN CONST CHAR8 *Format, ... ) argument
288 AsciiErrorPrint( IN CONST CHAR8 *Format, ... ) argument
599 PrintXY( IN UINTN PointX, IN UINTN PointY, IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *ForeGround, OPTIONAL IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BackGround, OPTIONAL IN CONST CHAR16 *Format, ... ) argument
678 AsciiPrintXY( IN UINTN PointX, IN UINTN PointY, IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *ForeGround, OPTIONAL IN EFI_GRAPHICS_OUTPUT_BLT_PIXEL *BackGround, OPTIONAL IN CONST CHAR8 *Format, ... ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/SecurityPkg/Include/Guid/
H A DAuthenticatedVariableFormat.h102 /// Variable Store Header Format and State.
123 UINT8 Format; member in struct:__anon12675
/vbox/src/VBox/Devices/EFI/Firmware/ShellPkg/Library/UefiFileHandleLib/
H A DUefiFileHandleLib.c1072 @param[in] Format the format argument (see printlib for format specifier)
1084 IN CONST CHAR16 *Format,
1101 VA_START (Marker, Format);
1102 UnicodeVSPrint (Buffer, PcdGet16 (PcdShellPrintBufferSize), Format, Marker);
1082 FileHandlePrintLine( IN EFI_FILE_HANDLE Handle, IN CONST CHAR16 *Format, ... ) argument

Completed in 135 milliseconds

123