Searched refs:ReportFile (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Ecc/
H A DEcc.py56 self.ReportFile = 'Report.csv'
238 EccGlobalData.gDb.TblReport.ToCSV(self.ReportFile)
304 if Options.ReportFile != None:
305 self.ReportFile = Options.ReportFile
356 Parser.add_option("-r", "--reportfile filename", action="store", type="string", dest="ReportFile",
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/build/
H A DBuildReport.py1515 # @param ReportFile The file name to save report file
1518 def __init__(self, ReportFile, ReportType):
1519 self.ReportFile = ReportFile
1520 if ReportFile:
1539 if self.ReportFile:
1552 if self.ReportFile:
1558 SaveFileOnChange(self.ReportFile, Content, True)
1559 EdkLogger.quiet("Build report can be found at %s" % os.path.abspath(self.ReportFile))
1561 EdkLogger.error(None, FILE_WRITE_FAILURE, ExtraData=self.ReportFile)
[all...]
H A Dbuild.py727 self.BuildReport = BuildReport(BuildOptions.ReportFile, BuildOptions.ReportType)
1701 Parser.add_option("-y", "--report-file", action="store", dest="ReportFile", help="Create/overwrite the report to the specified filename.")
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenFw/
H A DGenFw.c1116 FILE *ReportFile; local
2725 ReportFile = fopen (ReportFileName, "w+");
2726 if (ReportFile != NULL) {
2727 fprintf (ReportFile, "MODULE_SIZE = %u\n", (unsigned) mImageSize);
2728 fprintf (ReportFile, "TIME_STAMP = %u\n", (unsigned) mImageTimeStamp);
2729 fclose(ReportFile);

Completed in 94 milliseconds