Home | History | Annotate | Download | only in UefiDebugLibDebugPortProtocol

Lines Matching refs:ErrorLevel

90   If any bit in ErrorLevel is also set in DebugPrintErrorLevelLib function 

96 @param ErrorLevel The error level of the debug message.
105 IN UINTN ErrorLevel,
121 if ((ErrorLevel & GetDebugPrintErrorLevel ()) == 0) {
315 Returns TRUE if any one of the bit is set both in ErrorLevel and PcdFixedDebugPrintErrorLevel.
317 This function compares the bit mask of ErrorLevel and PcdFixedDebugPrintErrorLevel.
319 @retval TRUE Current ErrorLevel is supported.
320 @retval FALSE Current ErrorLevel is not supported.
326 IN CONST UINTN ErrorLevel
329 return (BOOLEAN) ((ErrorLevel & PcdGet32(PcdFixedDebugPrintErrorLevel)) != 0);