Home
last modified time | relevance | path

Searched refs:Ext (Results 1 – 25 of 26) sorted by relevance

12

/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/FwImage/
Dfwimage.c301 PUCHAR Ext; in main() local
328 Ext = 0; in main()
425 Ext = ".efi"; in main()
429 Ext = ".efi"; in main()
433 Ext = ".efi"; in main()
437 Ext = ".efi"; in main()
440 Ext = ".sec"; in main()
448 Ext = ".pei"; in main()
493 strcpy (pe, Ext); in main()
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenTEImage/
DGenTEImage.c159 INT8 *Ext; in main() local
186 for (Ext = mOptions.OutFileName + strlen (mOptions.OutFileName) - 1; in main()
187 (Ext >= mOptions.OutFileName) && (*Ext != '.') && (*Ext != '\\'); in main()
188 Ext-- in main()
194 if (*Ext != '.') { in main()
195 Ext = mOptions.OutFileName + strlen (mOptions.OutFileName); in main()
198 strcpy (Ext, DEFAULT_OUTPUT_EXTENSION); in main()
/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
DBuildEngine.py166 Base, Ext = os.path.splitext(File)
175 if Ext not in self.SourceFileExtList:
176 self.SourceFileExtList.append(Ext)
237 … SrcFileName, SrcFileBase, SrcFileExt = SourceFile.Name, SourceFile.BaseName, SourceFile.Ext
252 DestFileBase, DestFileExt = self.DestFileList[0].BaseName, self.DestFileList[0].Ext
284 if BuildRuleOrder and SourceFile.Ext in BuildRuleOrder:
285 Index = BuildRuleOrder.index(SourceFile.Ext)
287 if Input.Ext not in BuildRuleOrder or BuildRuleOrder.index(Input.Ext) > Index:
DGenMake.py628 if File.Ext == '.h':
645 if File.Ext not in [".c", ".C"] or File.Name == "AutoGen.c":
662 if File.Ext not in [".c", ".C"] or File.Name == "AutoGen.c":
DAutoGen.py2626 self.BuildRuleOrder = ['.%s' % Ext for Ext in self.BuildRuleOrder.split()]
2766 for Ext in RuleObject.SourceFileExtList:
2767 BuildRules[Ext] = RuleObject
2804 elif Source.Ext in self.BuildRules:
2805 RuleObject = self.BuildRules[Source.Ext]
3069 if SrcFile.Ext.lower() != '.vfr':
3323 if Item.Target.Ext.lower() == '.aml':
3325 elif Item.Target.Ext.lower() == '.acpi':
3332 if Item.Target.Ext.lower() == '.efi':
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Table/
DTableFile.py88 (Root, Ext) = os.path.splitext(FileFullPath)
90 File = FileClass(-1, Name, Ext, Filepath, FileFullPath, Model, '', [], [], [])
/device/linaro/bootloader/edk2/OvmfPkg/AcpiTables/
DFacp.aslc74 GAS2_IO(PM1a_EVT_BLK, PM1_EVT_LEN), // Ext. addr. of PM 1a Event Reg Blk
76 GAS2_IO(PM1a_CNT_BLK, PM1_CNT_LEN), // Ext. addr. of PM 1a Ctrl Reg Blk
79 GAS2_IO(PM_TMR_BLK, PM_TM_LEN), // Ext. addr. of PM Timer Ctrl Reg Blk
80 GAS2_IO(GPE0_BLK, GPE0_BLK_LEN), // Ext. addr. of GPE 0 Reg Blk
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/EfiRom/
DEfiRom.c237 INT8 *Ext; in main() local
270 for (Ext = mOptions.OutFileName + strlen (mOptions.OutFileName) - 1; in main()
271 (Ext >= mOptions.OutFileName) && (*Ext != '.') && (*Ext != '\\'); in main()
272 Ext-- in main()
278 if (*Ext != '.') { in main()
279 Ext = mOptions.OutFileName + strlen (mOptions.OutFileName); in main()
282 strcpy (Ext, DEFAULT_OUTPUT_EXTENSION); in main()
/device/linaro/bootloader/edk2/BaseTools/Source/C/EfiRom/
DEfiRom.c47 CHAR8 *Ext; in main() local
103 for (Ext = mOptions.OutFileName + strlen (mOptions.OutFileName) - 1; in main()
104 (Ext >= mOptions.OutFileName) && (*Ext != '.') && (*Ext != '\\'); in main()
105 Ext-- in main()
111 if (*Ext != '.') { in main()
112 Ext = mOptions.OutFileName + strlen (mOptions.OutFileName); in main()
115 strcpy (Ext, DEFAULT_OUTPUT_EXTENSION); in main()
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
DMisc.py238 def ValidFile(File, Ext=None): argument
240 if Ext != None:
242 if FileExt.lower() != Ext.lower():
482 self.BaseName, self.Ext = os.path.splitext(self.Name)
495 self.Type = self.Ext.lower()
564 self.BaseName, self.Ext = os.path.splitext(self.Name)
DParsing.py843 Ext = os.path.splitext(FileSp)[1]
844 if Ext.lower() in ['.dec']:
878 Ext = os.path.splitext(FileSp)[1]
879 if Ext.lower() in ['.inf']:
DString.py528 (Root, Ext) = os.path.splitext(CheckFilename)
529 if Ext.upper() != ExtName.upper() and Root:
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/
DMkPkg.py262 Ext = os.path.splitext(Item)[1]
263 if Ext.upper() != QualifiedExt.upper():
DInstallPkg.py590 FileName, Ext = os.path.splitext(DistFileName)
591 NewFileName = FileName + '_' + Guid + '_' + Version + Ext
/device/linaro/bootloader/edk2/BaseTools/Source/Python/build/
DBuildReport.py455 Ext = os.path.splitext(Source.File)[1].lower()
456 if Ext in [".c", ".cc", ".cpp"]:
458 elif Ext in [".s", ".asm"]:
461 elif Ext in [".vfr"]:
464 elif Ext in [".dxs"]:
467 elif Ext in [".asl"]:
470 elif Ext in [".aslc"]:
474 elif Ext in [".asm16"]:
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/
DGenFdsGlobalVariable.py189 for Ext in RuleObject.SourceFileExtList:
190 BuildRules[Ext] = RuleObject
233 elif Source.Ext in BuildRules:
234 RuleObject = BuildRules[Source.Ext]
DFdfParser.py3547 Ext = ""
3551 Ext = self.__Token
3552 return '.' + Ext
3688 Ext = None
3690 Ext = self.__GetFileExtension()
3705 Rule.FileExtension = Ext
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
DMisc.py641 def ValidFile(File, Ext=None): argument
642 if Ext != None:
644 if FileExt.lower() != Ext.lower():
687 def ValidFile2(AllFiles, File, Ext=None, Workspace='', EfiSource='', EdkSource='', Dir='.', Overrid… argument
689 if Ext != None:
691 if FileExt.lower() != Ext.lower():
1747 self.BaseName, self.Ext = os.path.splitext(self.Name)
1760 self.Type = self.Ext.lower()
1856 self.BaseName, self.Ext = os.path.splitext(self.Name)
DString.py621 (Root, Ext) = os.path.splitext(CheckFilename)
622 if Ext.upper() != ExtName.upper():
DFdfParserLite.py2841 Ext = ""
2845 Ext = self.__Token
2846 return '.' + Ext
2956 Ext = self.__GetFileExtension()
2965 Rule.FileExtension = Ext
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/
Dc.py361 Ext = os.path.splitext(BaseName)[1].lstrip('.')
363 …FileObj = DataClass.FileClass(-1, BaseName, Ext, DirName, FullName, model, ModifiedTime, GetFuncti…
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Trim/
DTrim.py417 Dummy, Ext = os.path.splitext(FileName)
418 if Ext.upper() not in ['.C', '.H']: continue
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
DMetaDataTable.py211 File.Ext,
DWorkspaceDatabase.py2198 if File.Ext.lower() == '.h':
2776 Ext = FilePath.Type
2777 if Ext not in self._FILE_TYPE_:
2779 FileType = self._FILE_TYPE_[Ext]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
DCheck.py429 Ext = os.path.splitext(F)[1]
430 if Ext in ('.h', '.c'):
433 elif Ext in ('.inf', '.dec', '.dsc', '.fdf'):

12