Lines Matching full:dbgout
208 SIMPLE_TEXT_OUTPUT_INTERFACE *DbgOut;
229 DbgOut = LibRuntimeDebugOut;
231 if (!DbgOut) {
232 DbgOut = ST->StdErr;
235 if (DbgOut) {
236 ps.Attr = DbgOut->Mode->Attribute;
237 ps.Context = DbgOut;
238 ps.SetAttr = (INTN EFIAPI (*)(VOID *, UINTN)) DbgOut->SetAttribute;
296 SIMPLE_TEXT_OUTPUT_INTERFACE *DbgOut;
298 DbgOut = Context;
299 // if (!DbgOut && ST && ST->ConOut) {
300 // DbgOut = ST->ConOut;
303 if (DbgOut) {
304 if (IsLocalPrint(DbgOut->OutputString))
305 DbgOut->OutputString(DbgOut, Buffer);
307 uefi_call_wrapper(DbgOut->OutputString, 2, DbgOut, Buffer);