MdePkg[all]  1.08
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
EFI_DEBUG_ASSERT_DATA Struct Reference

Data Fields

EFI_STATUS_CODE_DATA DataHeader
 
UINT32 LineNumber
 
UINT32 FileNameSize
 
EFI_STATUS_CODE_STRING_DATAFileName
 

Detailed Description

This structure provides the assert information that is typically associated with a debug assertion failing.

The data indicates the location of the assertion that failed in the source code. This information includes the file name and line number that are necessary to find the failing assertion in source code.

Field Documentation

EFI_STATUS_CODE_DATA EFI_DEBUG_ASSERT_DATA::DataHeader

The data header identifying the data. DataHeader.HeaderSize should be sizeof (EFI_STATUS_CODE_DATA), DataHeader.Size should be sizeof (EFI_DEBUG_ASSERT_DATA) - HeaderSize , and DataHeader.Type should be EFI_STATUS_CODE_SPECIFIC_DATA_GUID.

EFI_STATUS_CODE_STRING_DATA* EFI_DEBUG_ASSERT_DATA::FileName

A pointer to a NULL-terminated ASCII or Unicode string that represents the file name of the source file where the fault was generated.

UINT32 EFI_DEBUG_ASSERT_DATA::FileNameSize

The size in bytes of FileName.

UINT32 EFI_DEBUG_ASSERT_DATA::LineNumber

The line number of the source file where the fault was generated.