TianoCore EDK2 master
|
#include <Ppi/Debug.h>
Go to the source code of this file.
Functions | |
VOID EFIAPI | PeiDebugBPrint (IN UINTN ErrorLevel, IN CONST CHAR8 *Format, IN BASE_LIST Marker) |
VOID EFIAPI | PeiDebugAssert (IN CONST CHAR8 *FileName, IN UINTN LineNumber, IN CONST CHAR8 *Description) |
Header file of Debug services instances.
Copyright (c) 2019, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
Definition in file DebugService.h.
VOID EFIAPI PeiDebugAssert | ( | IN CONST CHAR8 * | FileName, |
IN UINTN | LineNumber, | ||
IN CONST CHAR8 * | Description | ||
) |
Prints an assert message containing a filename, line number, and description. This may be followed by a breakpoint or a dead loop.
[in] | FileName | The pointer to the name of the source file that generated the assert condition. |
[in] | LineNumber | The line number in the source file that generated the assert condition |
[in] | Description | The pointer to the description of the assert condition. |
Print an assert message containing a filename, line number, and description. This may be followed by a breakpoint or a dead loop.
[in] | FileName | The pointer to the name of the source file that generated the assert condition. |
[in] | LineNumber | The line number in the source file that generated the assert condition |
[in] | Description | The pointer to the description of the assert condition. |
Definition at line 64 of file DebugServicePei.c.
Print a debug message to debug output device if the specified error level is enabled.
[in] | ErrorLevel | The error level of the debug message. |
[in] | Format | Format string for the debug message to print. |
[in] | Marker | BASE_LIST marker for the variable argument list. |
Definition at line 42 of file DebugServicePei.c.