/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/FwImage/ |
D | fwimage.c | 301 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/ |
D | GenTEImage.c | 159 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/ |
D | TableFile.py | 88 (Root, Ext) = os.path.splitext(FileFullPath) 90 File = FileClass(-1, Name, Ext, Filepath, FileFullPath, Model, '', [], [], [])
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/ |
D | BuildEngine.py | 166 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:
|
D | AutoGen.py | 444 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 …]
|
D | GenMake.py | 788 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":
|
D | GenC.py | 1648 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/ |
D | FatLiteAccess.c | 459 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/ |
D | Facp.aslc | 74 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/ |
D | EfiRom.c | 237 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/ |
D | EfiRom.c | 47 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/ |
D | MkPkg.py | 262 Ext = os.path.splitext(Item)[1] 263 if Ext.upper() != QualifiedExt.upper():
|
D | InstallPkg.py | 590 FileName, Ext = os.path.splitext(DistFileName) 591 NewFileName = FileName + '_' + Guid + '_' + Version + Ext
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/ |
D | Misc.py | 238 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)
|
D | Parsing.py | 843 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']:
|
D | String.py | 528 (Root, Ext) = os.path.splitext(CheckFilename) 529 if Ext.upper() != ExtName.upper() and Root:
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/ |
D | GenFdsGlobalVariable.py | 190 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/ |
D | Misc.py | 644 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)
|
D | String.py | 621 (Root, Ext) = os.path.splitext(CheckFilename) 622 if Ext.upper() != ExtName.upper():
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/build/ |
D | BuildReport.py | 463 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/ |
D | c.py | 361 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/ |
D | Trim.py | 448 Dummy, Ext = os.path.splitext(FileName) 449 if Ext.upper() not in ['.C', '.H']: continue
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/ |
D | MetaDataTable.py | 211 File.Ext,
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/ |
D | Check.py | 429 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/ |
D | SecEntry.nasm | 159 mov eax, dword [edi + FVH_EXTHEADER_SIZE_OFFSET] ; Bypass Ext Fv Header
|