Home
last modified time | relevance | path

Searched refs:OutputFile (Results 1 – 25 of 36) sorted by relevance

12

/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
DEfiSection.py120OutputFile = os.path.join( OutputPath, ModuleName + 'SEC' + str(Num) + Ffs.SectionSuffix.get(Secti…
121 GenFdsGlobalVariable.GenerateSection(OutputFile, [], 'EFI_SECTION_VERSION',
124 OutputFileList.append(OutputFile)
130OutputFile = os.path.join(OutputPath, ModuleName + 'SEC' + Num + Ffs.SectionSuffix.get(SectionType…
137 GenFdsGlobalVariable.GenerateSection(OutputFile, [], 'EFI_SECTION_VERSION',
140 OutputFileList.append(OutputFile)
158OutputFile = os.path.join( OutputPath, ModuleName + 'SEC' + str(Num) + Ffs.SectionSuffix.get(Secti…
159 GenFdsGlobalVariable.GenerateSection(OutputFile, [], 'EFI_SECTION_VERSION',
162 OutputFileList.append(OutputFile)
176OutputFile = os.path.join( OutputPath, ModuleName + 'SEC' + str(Num) + Ffs.SectionSuffix.get(Secti…
[all …]
DFvImageSection.py64OutputFile = 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)
92OutputFile = os.path.join(OutputPath, ModuleName + 'SEC' + SecNum + Ffs.SectionSuffix.get("FV_IMAG…
93 …GenFdsGlobalVariable.GenerateSection(OutputFile, [FvFileName], 'EFI_SECTION_FIRMWARE_VOLUME_IMAGE')
94 OutputFileList.append(OutputFile)
DCompressSection.py73 OutputFile = OutputPath + \
79 OutputFile = os.path.normpath(OutputFile)
81 …GenFdsGlobalVariable.GenerateSection(OutputFile, SectFiles, Section.Section.SectionType['COMPRESS'…
84 OutputFileList.append(OutputFile)
DVerSection.py61 OutputFile = os.path.join(OutputPath,
63 OutputFile = os.path.normpath(OutputFile)
79 GenFdsGlobalVariable.GenerateSection(OutputFile, [], 'EFI_SECTION_VERSION',
82 OutputFileList.append(OutputFile)
DDepexSection.py119 OutputFile = os.path.join (OutputPath, ModuleName + 'SEC' + SecNum + '.dpx')
120 OutputFile = os.path.normpath(OutputFile)
122 …GenFdsGlobalVariable.GenerateSection(OutputFile, [InputFile], Section.Section.SectionType.get (Sec…
123 FileList = [OutputFile]
DOptionRom.py111 OutputFile = os.path.join(GenFdsGlobalVariable.FvDir, self.DriverName)
112 OutputFile = OutputFile + '.rom'
115 OutputFile,
123 return OutputFile
DDataSection.py112OutputFile = os.path.join (OutputPath, ModuleName + 'SEC' + SecNum + Ffs.SectionSuffix.get(self.Se…
113 OutputFile = os.path.normpath(OutputFile)
115 …GenFdsGlobalVariable.GenerateSection(OutputFile, [self.SectFileName], Section.Section.SectionType.…
116 FileList = [OutputFile]
DGuidSection.py120 OutputFile = OutputPath + \
126 OutputFile = os.path.normpath(OutputFile)
139 …GenFdsGlobalVariable.GenerateSection(OutputFile, SectFile, Section.Section.SectionType[self.Sectio…
141 OutputFileList.append(OutputFile)
147 DummyFile = OutputFile + ".dummy"
241 …GenFdsGlobalVariable.GenerateSection(OutputFile, [TempFile], Section.Section.SectionType['GUIDED'],
244 OutputFileList.append(OutputFile)
DUiSection.py60OutputFile = os.path.join(OutputPath, ModuleName + 'SEC' + SecNum + Ffs.SectionSuffix.get('UI'))
74 …GenFdsGlobalVariable.GenerateSection(OutputFile, None, 'EFI_SECTION_USER_INTERFACE', Ui=NameString)
77 OutputFileList.append(OutputFile)
DFfsInfStatement.py727 OutputFile = os.path.join(self.OutputPath, GenSecOutputFile)
760 … GenFdsGlobalVariable.GenerateSection(OutputFile, [File], Section.Section.SectionType[SectionType])
761 OutputFileList.append(OutputFile)
766 OutputFile = os.path.join(self.OutputPath, GenSecOutputFile)
800 …GenFdsGlobalVariable.GenerateSection(OutputFile, [GenSecInputFile], Section.Section.SectionType[Se…
801 OutputFileList.append(OutputFile)
DVtf.py46 OutputFile = os.path.join(GenFdsGlobalVariable.FvDir, self.UiName + '.Vtf')
/device/linaro/bootloader/edk2/BaseTools/Source/C/GnuGenBootSector/
DGnuGenBootSector.c205 FILE *OutputFile; in ProcessBsOrMbr() local
232 OutputFile = fopen (LongFilePath (OutputInfo->PhysicalPath), "r+"); in ProcessBsOrMbr()
233 if (OutputFile == NULL) { in ProcessBsOrMbr()
234 OutputFile = fopen (LongFilePath (OutputInfo->PhysicalPath), "w"); in ProcessBsOrMbr()
235 if (OutputFile == NULL) { in ProcessBsOrMbr()
245 if (0x200 != fread (FirstSectorBackup, 1, 0x200, OutputFile)) { in ProcessBsOrMbr()
246 fclose(OutputFile); in ProcessBsOrMbr()
252 if(0x200 != fwrite(FirstSector, 1, 0x200, OutputFile)) { in ProcessBsOrMbr()
253 fclose(OutputFile); in ProcessBsOrMbr()
257 fclose(OutputFile); in ProcessBsOrMbr()
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Rsa2048Sha256Sign/
DRsa2048Sha256Sign.py115 OutputDir = os.path.dirname(args.OutputFile)
119 args.OutputFileName = args.OutputFile
171 args.OutputFile = open(args.OutputFileName, 'wb')
172 args.OutputFile.write(EFI_HASH_ALGORITHM_SHA256_GUID.get_bytes_le())
173 args.OutputFile.write(PublicKey)
174 args.OutputFile.write(Signature)
175 args.OutputFile.write(args.InputFileBuffer)
176 args.OutputFile.close()
DRsa2048Sha256GenerateKeys.py90 if args.OutputFile <> None:
91 for Item in args.OutputFile:
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenCRC32Section/
DGenCRC32Section.c225 FILE *OutputFile; in main() local
234 OutputFile = NULL; in main()
278 OutputFile = fopen (OutputFileName, "wb"); in main()
279 if (OutputFile == NULL) { in main()
298 fclose (OutputFile); in main()
302 ContentSize = fwrite (FileBuffer, sizeof (UINT8), BufferSize, OutputFile); in main()
311 fclose (OutputFile); in main()
/device/linaro/bootloader/edk2/BaseTools/Conf/
Dbuild_rule.template22 # <OutputFile[.<ToolChainFamily>]> <EOL>
127 <OutputFile>
153 <OutputFile>
168 <OutputFile>
183 <OutputFile>
204 <OutputFile>
219 <OutputFile>
237 <OutputFile>
249 <OutputFile>
275 <OutputFile>
[all …]
/device/linaro/bootloader/edk2/BeagleBoardPkg/Tools/
Dgenerate_image.c317 FILE *OutputFile; in ConstructImage() local
333 OutputFile = fopen(gOutputImageFile, "wb"); in ConstructImage()
334 if (OutputFile == NULL) { in ConstructImage()
340 fwrite(gConfigurationHeader, 1, sizeof(gConfigurationHeader), OutputFile); in ConstructImage()
343 fwrite(&InputImageFileSize, 1, 4, OutputFile); in ConstructImage()
344 fwrite(&gImageExecutionAddress, 1, 4, OutputFile); in ConstructImage()
349 fwrite(&Ch, 1, 1, OutputFile); in ConstructImage()
353 fclose(OutputFile); in ConstructImage()
/device/linaro/bootloader/OpenPlatformPkg/Platforms/TexasInstruments/BeagleBoard/Tools/
Dgenerate_image.c317 FILE *OutputFile; in ConstructImage() local
333 OutputFile = fopen(gOutputImageFile, "wb"); in ConstructImage()
334 if (OutputFile == NULL) { in ConstructImage()
340 fwrite(gConfigurationHeader, 1, sizeof(gConfigurationHeader), OutputFile); in ConstructImage()
343 fwrite(&InputImageFileSize, 1, 4, OutputFile); in ConstructImage()
344 fwrite(&gImageExecutionAddress, 1, 4, OutputFile); in ConstructImage()
349 fwrite(&Ch, 1, 1, OutputFile); in ConstructImage()
353 fclose(OutputFile); in ConstructImage()
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Trim/
DTrim.py571 if CommandOptions.OutputFile == None:
572 CommandOptions.OutputFile = os.path.splitext(InputFile)[0] + '.iii'
573 TrimPreprocessedVfr(InputFile, CommandOptions.OutputFile)
575 if CommandOptions.OutputFile == None:
576 CommandOptions.OutputFile = os.path.splitext(InputFile)[0] + '.iii'
577 TrimAslFile(InputFile, CommandOptions.OutputFile, CommandOptions.IncludePathFile)
579 TrimEdkSources(InputFile, CommandOptions.OutputFile)
581 if CommandOptions.OutputFile == None:
582 CommandOptions.OutputFile = os.path.splitext(InputFile)[0] + '.iii'
583 …TrimPreprocessedFile(InputFile, CommandOptions.OutputFile, CommandOptions.ConvertHex, CommandOptio…
/device/linaro/bootloader/edk2/BaseTools/Source/C/Common/
DCommonLib.c283 FILE *OutputFile; in PutFileImage() local
298 OutputFile = fopen (LongFilePath (OutputFileName), "wb"); in PutFileImage()
299 if (OutputFile == NULL) { in PutFileImage()
307 BytesWrote = fwrite (OutputFileImage, sizeof (UINT8), BytesToWrite, OutputFile); in PutFileImage()
310 fclose (OutputFile); in PutFileImage()
316 fclose (OutputFile); in PutFileImage()
/device/linaro/bootloader/edk2/BaseTools/Source/C/GenPage/
DGenPage.c298 CHAR8 *OutputFile = NULL; in main() local
329 OutputFile = argv[1]; in main()
424 result = GenBinPage (BaseMemory, InputFile, OutputFile); in main()
/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
DGenDepex.py425 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)
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenFfsFile/
DGenFfsFile.c107 UINT8 *OutputFile
1133 FILE *OutputFile; in ProcessScript() local
1145 OutputFile = NULL; in ProcessScript()
1300 OutputFile = fopen (OutputFileName, "rb"); in ProcessScript()
1301 if (OutputFile == NULL) { in ProcessScript()
1310 fread (&Temp, sizeof (UINT8), 1, OutputFile); in ProcessScript()
1311 while (!feof (OutputFile)) { in ProcessScript()
1313 fread (&Temp, sizeof (UINT8), 1, OutputFile); in ProcessScript()
1323 fclose (OutputFile); in ProcessScript()
1324 OutputFile = NULL; in ProcessScript()
[all …]
/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/dlg/
Ddlg.r88 OutputFile,
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
DEcc.py57 self.OutputFile = 'output.txt'
351 if Options.OutputFile != None:
352 self.OutputFile = Options.OutputFile

12