/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenCrc32/ |
H A D | GenCrc32.c | 133 UINT64 LogLevel; local 142 LogLevel = 0; 220 Status = AsciiStringToUint64 (argv[1], FALSE, &LogLevel); 225 if (LogLevel > 9) { 226 Error (NULL, 0, 1003, "Invalid option value", "Debug Level range is 0-9, current input level is %d", (int) LogLevel); 229 SetPrintLevel (LogLevel);
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GnuGenBootSector/ |
H A D | GnuGenBootSector.c | 314 UINT64 LogLevel; local 394 EfiStatus = AsciiStringToUint64 (argv[Index + 1], FALSE, &LogLevel); 399 if (LogLevel > 9) { 400 Error (NULL, 0, 1003, "Invalid option value", "Debug Level range is 0-9, currnt input level is %d", (int) LogLevel); 403 SetPrintLevel (LogLevel);
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/ |
H A D | EfiUtilityMsgs.h | 137 UINT64 LogLevel
|
H A D | EfiUtilityMsgs.c | 653 UINT64 LogLevel 662 LogLevel - 0~50 to specify the different level message. 669 mPrintLogLevel = LogLevel;
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/PatchPcdValue/ |
H A D | PatchPcdValue.py | 219 make_option("-v", "--verbose", dest="LogLevel", action="store_const", const=EdkLogger.VERBOSE, 221 make_option("-d", "--debug", dest="LogLevel", type="int", 223 make_option("-q", "--quiet", dest="LogLevel", action="store_const", const=EdkLogger.QUIET, 232 Parser.set_defaults(LogLevel=EdkLogger.INFO) 259 if CommandOptions.LogLevel < EdkLogger.DEBUG_9: 260 EdkLogger.SetLevel(CommandOptions.LogLevel + 1) 262 EdkLogger.SetLevel(CommandOptions.LogLevel)
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenFv/ |
H A D | GenFv.c | 202 UINT64 LogLevel, TempNumber; local 215 LogLevel = 0; 526 Status = AsciiStringToUint64 (argv[1], FALSE, &LogLevel); 531 if (LogLevel > 9) { 532 Error (NULL, 0, 1003, "Invalid option value", "Debug Level range is 0-9, current input level is %d", (int) LogLevel); 535 SetPrintLevel (LogLevel);
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenBootSector/ |
H A D | GenBootSector.c | 652 UINT64 LogLevel; local 730 EfiStatus = AsciiStringToUint64 (argv[Index + 1], FALSE, &LogLevel); 735 if (LogLevel > 9) { 736 Error (NULL, 0, 1003, "Invalid option value", "Debug Level range is 0-9, currnt input level is %d", (int) LogLevel); 739 SetPrintLevel (LogLevel);
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Trim/ |
H A D | Trim.py | 520 make_option("-v", "--verbose", dest="LogLevel", action="store_const", const=EdkLogger.VERBOSE, 522 make_option("-d", "--debug", dest="LogLevel", type="int", 524 make_option("-q", "--quiet", dest="LogLevel", action="store_const", const=EdkLogger.QUIET, 535 Parser.set_defaults(LogLevel=EdkLogger.INFO) 561 if CommandOptions.LogLevel < EdkLogger.DEBUG_9: 562 EdkLogger.SetLevel(CommandOptions.LogLevel + 1) 564 EdkLogger.SetLevel(CommandOptions.LogLevel) 586 if CommandOptions != None and CommandOptions.LogLevel <= EdkLogger.DEBUG_9:
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenFfs/ |
H A D | GenFfs.c | 459 UINT64 LogLevel; local 465 LogLevel = 0; 688 Status = AsciiStringToUint64 (argv[1], FALSE, &LogLevel); 693 if (LogLevel > 9) { 694 Error (NULL, 0, 1003, "Invalid option value", "Debug Level range is 0-9, current input level is %d", (int) LogLevel); 697 SetPrintLevel (LogLevel);
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenSec/ |
H A D | GenSec.c | 935 UINT64 LogLevel; local 955 LogLevel = 0; 1109 Status = AsciiStringToUint64 (argv[1], FALSE, &LogLevel); 1114 if (LogLevel > 9) { 1115 Error (NULL, 0, 1003, "Invalid option value", "Debug Level range is 0~9, currnt input level is %d", (int) LogLevel); 1118 SetPrintLevel (LogLevel);
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/BootSectImage/ |
H A D | bootsectimage.c | 849 UINT64 LogLevel; local 898 EfiStatus = AsciiStringToUint64 (*argv, FALSE, &LogLevel); 903 if (LogLevel > 9) { 904 Error (NULL, 0, 1003, "Invalid option value", "Debug Level range is 0-9, currnt input level is %d", (int) LogLevel); 907 SetPrintLevel (LogLevel);
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/AutoGen/ |
H A D | GenMake.py | 1353 LogLevel = EdkLogger.GetLevel() 1354 if LogLevel == EdkLogger.VERBOSE: 1356 elif LogLevel <= EdkLogger.DEBUG_9: 1357 ExtraOption += " -d %d" % (LogLevel - 1) 1358 elif LogLevel == EdkLogger.QUIET:
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenFw/ |
H A D | GenFw.c | 1094 UINT64 LogLevel; local 1147 LogLevel = 0; 1381 Status = AsciiStringToUint64 (argv[1], FALSE, &LogLevel); 1386 if (LogLevel > 9) { 1387 Error (NULL, 0, 1003, "Invalid option value", "Debug Level range is 0-9, currnt input level is %d", (int) LogLevel); 1390 SetPrintLevel (LogLevel);
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Eot/ |
H A D | FvImage.py | 1356 make_option("-v", "--verbose", dest="LogLevel", action="store_const", const=EdkLogger.VERBOSE, 1358 make_option("-d", "--debug", dest="LogLevel", type="int", 1360 make_option("-q", "--quiet", dest="LogLevel", action="store_const", const=EdkLogger.QUIET, 1379 Parser.set_defaults(LogLevel=EdkLogger.INFO)
|