Searched refs:OutputFile (Results 1 - 20 of 20) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/GenFds/
H A DCompressSection.py73 OutputFile = OutputPath + \
79 OutputFile = os.path.normpath(OutputFile)
81 GenFdsGlobalVariable.GenerateSection(OutputFile, SectFiles, Section.Section.SectionType['COMPRESS'],
84 OutputFileList.append(OutputFile)
H A DVerSection.py60 OutputFile = os.path.join(OutputPath,
62 OutputFile = os.path.normpath(OutputFile)
78 GenFdsGlobalVariable.GenerateSection(OutputFile, None, 'EFI_SECTION_VERSION',
81 OutputFileList.append(OutputFile)
H A DFvImageSection.py64 OutputFile = os.path.join(OutputPath, ModuleName + 'SEC' + Num + Ffs.SectionSuffix.get("FV_IMAGE"))
65 GenFdsGlobalVariable.GenerateSection(OutputFile, [FvFileName], 'EFI_SECTION_FIRMWARE_VOLUME_IMAGE')
66 OutputFileList.append(OutputFile)
92 OutputFile = os.path.join(OutputPath, ModuleName + 'SEC' + SecNum + Ffs.SectionSuffix.get("FV_IMAGE"))
93 GenFdsGlobalVariable.GenerateSection(OutputFile, [FvFileName], 'EFI_SECTION_FIRMWARE_VOLUME_IMAGE')
94 OutputFileList.append(OutputFile)
H A DEfiSection.py118 OutputFile = os.path.join( OutputPath, ModuleName + 'SEC' + str(Num) + Ffs.SectionSuffix.get(SectionType))
119 GenFdsGlobalVariable.GenerateSection(OutputFile, [], 'EFI_SECTION_VERSION',
122 OutputFileList.append(OutputFile)
128 OutputFile = os.path.join(OutputPath, ModuleName + 'SEC' + Num + Ffs.SectionSuffix.get(SectionType))
135 GenFdsGlobalVariable.GenerateSection(OutputFile, [], 'EFI_SECTION_VERSION',
138 OutputFileList.append(OutputFile)
156 OutputFile = os.path.join( OutputPath, ModuleName + 'SEC' + str(Num) + Ffs.SectionSuffix.get(SectionType))
157 GenFdsGlobalVariable.GenerateSection(OutputFile, [], 'EFI_SECTION_VERSION',
160 OutputFileList.append(OutputFile)
174 OutputFile
[all...]
H A DUiSection.py59 OutputFile = os.path.join(OutputPath, ModuleName + 'SEC' + SecNum + Ffs.SectionSuffix.get('UI'))
73 GenFdsGlobalVariable.GenerateSection(OutputFile, None, 'EFI_SECTION_USER_INTERFACE', Ui=NameString)
76 OutputFileList.append(OutputFile)
H A DDepexSection.py107 OutputFile = os.path.join (OutputPath, ModuleName + 'SEC' + SecNum + '.dpx')
108 OutputFile = os.path.normpath(OutputFile)
110 GenFdsGlobalVariable.GenerateSection(OutputFile, [InputFile], Section.Section.SectionType.get (SecType))
111 FileList = [OutputFile]
H A DOptionRom.py112 OutputFile = os.path.join(GenFdsGlobalVariable.FvDir, self.DriverName)
113 OutputFile = OutputFile + '.rom'
116 OutputFile,
124 return OutputFile
H A DGuidSection.py119 OutputFile = OutputPath + \
125 OutputFile = os.path.normpath(OutputFile)
138 GenFdsGlobalVariable.GenerateSection(OutputFile, SectFile, Section.Section.SectionType[self.SectionType], InputAlign=SectAlign)
140 OutputFileList.append(OutputFile)
146 DummyFile = OutputFile+".dummy"
227 GenFdsGlobalVariable.GenerateSection(OutputFile, [TempFile], Section.Section.SectionType['GUIDED'],
230 OutputFileList.append(OutputFile)
H A DDataSection.py113 OutputFile = os.path.join (OutputPath, ModuleName + 'SEC' + SecNum + Ffs.SectionSuffix.get(self.SecType))
114 OutputFile = os.path.normpath(OutputFile)
116 GenFdsGlobalVariable.GenerateSection(OutputFile, [self.SectFileName], Section.Section.SectionType.get(self.SecType))
117 FileList = [OutputFile]
H A DVtf.py45 OutputFile = os.path.join(GenFdsGlobalVariable.FvDir, self.UiName + '.Vtf')
H A DFfsInfStatement.py528 OutputFile = os.path.join(self.OutputPath, GenSecOutputFile)
561 GenFdsGlobalVariable.GenerateSection(OutputFile, [File], Section.Section.SectionType[SectionType])
562 OutputFileList.append(OutputFile)
567 OutputFile = os.path.join(self.OutputPath, GenSecOutputFile)
600 GenFdsGlobalVariable.GenerateSection(OutputFile, [GenSecInputFile], Section.Section.SectionType[SectionType])
601 OutputFileList.append(OutputFile)
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GnuGenBootSector/
H A DGnuGenBootSector.c211 FILE *OutputFile; local
238 OutputFile = fopen(OutputInfo->PhysicalPath, "r+");
239 if (OutputFile == NULL) {
240 OutputFile = fopen(OutputInfo->PhysicalPath, "w");
241 if (OutputFile == NULL) {
251 if (0x200 != fread (FirstSectorBackup, 1, 0x200, OutputFile)) {
252 fclose(OutputFile);
258 if(0x200 != fwrite(FirstSector, 1, 0x200, OutputFile)) {
259 fclose(OutputFile);
263 fclose(OutputFile);
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/Pccts/dlg/
H A Ddlg.r88 OutputFile,
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/Common/
H A DCommonLib.c285 FILE *OutputFile; local
300 OutputFile = fopen (OutputFileName, "wb");
301 if (OutputFile == NULL) {
309 BytesWrote = fwrite (OutputFileImage, sizeof (UINT8), BytesToWrite, OutputFile);
312 fclose (OutputFile);
318 fclose (OutputFile);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Trim/
H A DTrim.py518 make_option("-o", "--output", dest="OutputFile",
570 if CommandOptions.OutputFile == None:
571 CommandOptions.OutputFile = os.path.splitext(InputFile)[0] + '.iii'
572 TrimPreprocessedVfr(InputFile, CommandOptions.OutputFile)
574 if CommandOptions.OutputFile == None:
575 CommandOptions.OutputFile = os.path.splitext(InputFile)[0] + '.iii'
576 TrimAslFile(InputFile, CommandOptions.OutputFile, CommandOptions.IncludePathFile)
578 TrimEdkSources(InputFile, CommandOptions.OutputFile)
580 if CommandOptions.OutputFile == None:
581 CommandOptions.OutputFile
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/GenPage/
H A DGenPage.c299 CHAR8 *OutputFile = NULL; local
330 OutputFile = argv[1];
425 result = GenBinPage (BaseMemory, InputFile, OutputFile);
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/AutoGen/
H A DGenDepex.py371 Parser.add_option("-o", "--output", dest="OutputFile", default=None, metavar="FILE",
425 if Option.OutputFile != None:
426 FileChangeFlag = Dpx.Generate(Option.OutputFile)
432 if os.stat(DxsFile)[8] > os.stat(Option.OutputFile)[8]:
433 os.utime(Option.OutputFile, None)
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Ecc/
H A DEcc.py55 self.OutputFile = 'output.txt'
302 if Options.OutputFile != None:
303 self.OutputFile = Options.OutputFile
354 Parser.add_option("-o", "--outfile filename", action="store", type="string", dest="OutputFile",
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DMigrationUtilities.py528 Parser.add_option("-o", "--output", dest="OutputFile", help="The name of the %s file to be created." % Destinate)
553 if Options.OutputFile:
558 Options.OutputFile = os.path.splitext(InputFile)[0] + "." + Destinate.lower()
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/TianoCompress/
H A DTianoCompress.c1742 FILE *OutputFile; local
1923 OutputFile = fopen (OutputFileName, "wb");
1924 if (OutputFile == NULL) {
1933 OutputFile = fopen (OutputFileName, "wb");
1958 fwrite(OutBuffer,(size_t)DstSize, 1, OutputFile);
1995 fwrite(OutBuffer, (size_t)(Scratch->mOrigSize), 1, OutputFile);

Completed in 1578 milliseconds