Home
last modified time | relevance | path

Searched refs:Ext (Results 1 – 25 of 29) 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/Table/
DTableFile.py88 (Root, Ext) = os.path.splitext(FileFullPath)
90 File = FileClass(-1, Name, Ext, Filepath, FileFullPath, Model, '', [], [], [])
/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:
DAutoGen.py444 if BuildData.MetaFile.Ext == '.dec':
463 if BuildData.MetaFile.Ext == '.inf':
487 if BuildData.MetaFile.Ext == '.inf':
2990 self.BuildRuleOrder = ['.%s' % Ext for Ext in self.BuildRuleOrder.split()]
3091 …if self.BuildRuleOrder and SingleFile.Ext in self.BuildRuleOrder and SingleFile.Ext in self.BuildR…
3092 key = SingleFile.Path.split(SingleFile.Ext)[0]
3094 Order_Dict[key].append(SingleFile.Ext)
3096 Order_Dict[key] = [SingleFile.Ext]
3102 for Ext in Order_Dict[F][1:]:
3103 RemoveList.append(F + Ext)
[all …]
DGenMake.py788 if File.Ext == '.h':
805 if File.Ext not in [".c", ".C"] or File.Name == "AutoGen.c":
822 if File.Ext not in [".c", ".C"] or File.Name == "AutoGen.c":
DGenC.py1648 if not sourcefile.Ext.upper() in ['.PNG', '.BMP', '.JPG']:
1683 if File.Ext.upper() == '.PNG':
1687 elif File.Ext.upper() == '.JPG':
1694 elif File.Ext.upper() == '.BMP':
/device/linaro/bootloader/edk2/FatPkg/FatPei/
DFatLiteAccess.c459 CHAR16 Ext[4]; in FatReadNextDirectoryEntry() local
499 EngFatToStr (3, DirEntry.FileName + 8, Ext); in FatReadNextDirectoryEntry()
505 if (Ext[0] != 0) { in FatReadNextDirectoryEntry()
509 CopyMem ((UINT8 *) Pos, (UINT8 *) Ext, 2 * (StrLen (Ext) + 1)); in FatReadNextDirectoryEntry()
/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
104 for (Ext = mOptions.OutFileName + strlen (mOptions.OutFileName) - 1; in main()
105 (Ext >= mOptions.OutFileName) && (*Ext != '.') && (*Ext != '\\'); in main()
106 Ext-- in main()
112 if (*Ext != '.') { in main()
113 Ext = mOptions.OutFileName + strlen (mOptions.OutFileName); in main()
116 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/GenFds/
DGenFdsGlobalVariable.py190 for Ext in RuleObject.SourceFileExtList:
191 BuildRules[Ext] = RuleObject
234 elif Source.Ext in BuildRules:
235 RuleObject = BuildRules[Source.Ext]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
DMisc.py644 def ValidFile(File, Ext=None): argument
645 if Ext != None:
647 if FileExt.lower() != Ext.lower():
690 def ValidFile2(AllFiles, File, Ext=None, Workspace='', EfiSource='', EdkSource='', Dir='.', Overrid… argument
692 if Ext != None:
694 if FileExt.lower() != Ext.lower():
1770 self.BaseName, self.Ext = os.path.splitext(self.Name)
1783 self.Type = self.Ext.lower()
1879 self.BaseName, self.Ext = os.path.splitext(self.Name)
DString.py621 (Root, Ext) = os.path.splitext(CheckFilename)
622 if Ext.upper() != ExtName.upper():
/device/linaro/bootloader/edk2/BaseTools/Source/Python/build/
DBuildReport.py463 Ext = os.path.splitext(Source.File)[1].lower()
464 if Ext in [".c", ".cc", ".cpp"]:
466 elif Ext in [".s", ".asm"]:
469 elif Ext in [".vfr"]:
472 elif Ext in [".dxs"]:
475 elif Ext in [".asl"]:
478 elif Ext in [".aslc"]:
482 elif Ext in [".asm16"]:
/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.py448 Dummy, Ext = os.path.splitext(FileName)
449 if Ext.upper() not in ['.C', '.H']: continue
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
DMetaDataTable.py211 File.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'):
/device/linaro/bootloader/edk2/IntelFsp2WrapperPkg/Library/SecFspWrapperPlatformSecLibSample/Ia32/
DSecEntry.nasm159 mov eax, dword [edi + FVH_EXTHEADER_SIZE_OFFSET] ; Bypass Ext Fv Header

12