/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/AutoGen/ |
H A D | StrGather.py | 141 # @param BaseName: The basename of strings 145 def CreateHFileHeader(BaseName): 149 Str = WriteLine(Str, '#ifndef _' + BaseName.upper() + '_STRINGS_DEFINE_H_') 150 Str = WriteLine(Str, '#define _' + BaseName.upper() + '_STRINGS_DEFINE_H_') 157 # @param BaseName: The basename of strings 164 def CreateHFileContent(BaseName, UniObjectClass, IsCompatibleMode, UniGenCFlag): 198 Str = WriteLine(Str, 'extern unsigned char ' + BaseName + 'Strings[];') 205 # @param BaseName: The basename of strings 212 def CreateHFile(BaseName, UniObjectClass, IsCompatibleMode, UniGenCFlag): 213 HFile = WriteLine('', CreateHFileContent(BaseName, UniObjectClas [all...] |
H A D | BuildEngine.py | 236 SrcFileName, SrcFileBase, SrcFileExt = SourceFile.Name, SourceFile.BaseName, SourceFile.Ext 251 DestFileBase, DestFileExt = self.DestFileList[0].BaseName, self.DestFileList[0].Ext
|
H A D | GenMake.py | 541 # Edk modules need <BaseName>StrDefs.h for string ID 569 "module_file_base_name" : self._AutoGenObject.MetaFile.BaseName, 982 "module_file_base_name" : self._AutoGenObject.MetaFile.BaseName,
|
H A D | AutoGen.py | 2037 self._Macro["MODULE_FILE_BASE_NAME" ] = self.MetaFile.BaseName 2065 return self.Module.BaseName 2119 self.MetaFile.BaseName 2212 EdkLogger.verbose("DEPEX[%s] (+%s) = %s" % (self.Name, M.BaseName, DepexList)) 2247 EdkLogger.verbose("DEPEX[%s] (+%s) = %s" % (self.Name, M.BaseName, DepexExpressionList))
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/GenMetaFile/ |
H A D | GenDecFile.py | 242 BaseName = Package.GetBaseName() 243 if BaseName.startswith('.') or BaseName.startswith('-'): 244 BaseName = '_' + BaseName 245 Statement = '%s = %s' % (TAB_DEC_DEFINES_PACKAGE_NAME, BaseName)
|
H A D | GenInfFile.py | 136 BaseName = ModuleObject.GetBaseName() 137 if BaseName.startswith('.') or BaseName.startswith('-'): 138 BaseName = '_' + BaseName 139 Statement = '%s = %s' % (DT.TAB_INF_DEFINES_BASE_NAME, BaseName)
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/GenFds/ |
H A D | FfsInfStatement.py | 129 self.FinalTargetSuffixMap['.depex'] = [os.path.join(self.EfiOutputPath, self.BaseName) + '.depex'] 168 # Set Ffs BaseName, MdouleGuid, ModuleType, Version, OutputPath 170 self.BaseName = Inf.BaseName 185 self.BaseName = Inf.BaseName 209 GenFdsGlobalVariable.VerboseLogger( "BaseName : %s" %self.BaseName) 220 self.ModuleGuid + self.BaseName) 295 '$(MODULE_NAME)' : self.BaseName, [all...] |
H A D | GenFdsGlobalVariable.py | 128 Macro["MODULE_NAME" ] = Inf.BaseName 133 Macro["MODULE_FILE_BASE_NAME" ] = PathClassObj.BaseName 137 Macro["BASE_NAME" ] = Inf.BaseName 152 PathClassObj.BaseName
|
H A D | GenFds.py | 513 print ModuleObj.BaseName + ' ' + ModuleObj.ModuleType 522 GuidXRefFile.write("%s %s\n" % (Module.Guid, Module.BaseName))
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Object/Parser/ |
H A D | InfDefineObject.py | 185 self.BaseName = None 210 # @param BaseName: BaseName 212 def SetBaseName(self, BaseName, Comments): 216 if self.BaseName != None: 221 if not (BaseName == '' or BaseName == None): 222 if IsValidWord(BaseName) and not BaseName.startswith("_"): 223 self.BaseName [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/ |
H A D | VpdInfoFile.py | 230 BaseName, ext = os.path.splitext(FileName) 231 OutputMapFileName = os.path.join(OutputDir, "%s.map" % BaseName) 232 OutputBinFileName = os.path.join(OutputDir, "%s.bin" % BaseName)
|
H A D | EdkIIWorkspaceBuild.py | 134 # @var BaseName: To store value for BaseName 175 self.BaseName = '' 549 EdkLogger.error("AutoGen", PARSER_ERROR, "The BaseName of platform %s is not defined for arch %s" % (Dsc, Arch)) 655 EdkLogger.error("AutoGen", PARSER_ERROR, "The BaseName of package %s is not defined for arch %s" % (Dec, Arch)) 735 Pb.BaseName = ModuleHeader.Name 736 if Pb.BaseName == '': 737 EdkLogger.error("AutoGen", PARSER_ERROR, "The BaseName of module %s is not defined for arch %s" % (Inf, Arch)) 1621 print 'BaseName = ', P.BaseName [all...] |
H A D | Misc.py | 1360 self.BaseName, self.Ext = os.path.splitext(self.Name) 1466 self.BaseName, self.Ext = os.path.splitext(self.Name)
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Xml/ |
H A D | IniToXml.py | 124 [], [['BaseName', DistMap['BaseName']]]) 237 # @param BaseName: BaseName 239 def __ValidateDistHeaderBaseName(BaseName): 240 if not BaseName: 242 # if CheckLen and len(BaseName) < 2: 244 if not BaseName[0].isalnum() and BaseName[0] != '_': 246 for Char in BaseName[ [all...] |
H A D | CommonXml.py | 138 self.BaseName = '' 156 self.BaseName = XmlAttribute(XmlNode(Item, '%s/Name' % Key), 'BaseName') 166 ModuleHeader.SetBaseName(self.BaseName) 179 Element1 = CreateXmlElement('Name', Header.GetName(), [], [['BaseName', Header.GetBaseName()]]) 194 return "Name = %s BaseName = %s GUID = %s Version = %s Copyright = %s \ 196 (self.Name, self.BaseName, self.GUID, self.Version, self.Copyright, \ 238 DistributionPackageHeader.SetBaseName(self.Header.BaseName) 253 [['BaseName', \ 304 PackageObject2.SetBaseName(self.Header.BaseName) [all...] |
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Object/POM/ |
H A D | CommonObject.py | 310 self.BaseName = '' 325 def SetBaseName(self, BaseName): 326 self.BaseName = BaseName 329 return self.BaseName
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Eot/ |
H A D | c.py | 359 BaseName = os.path.basename(FullName) 361 Ext = os.path.splitext(BaseName)[1].lstrip('.') 363 FileObj = DataClass.FileClass(-1, BaseName, Ext, DirName, FullName, model, ModifiedTime, GetFunctionList(), GetIdentifierList(), [])
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Workspace/ |
H A D | BuildClassObject.py | 128 # @var BaseName: To store value for BaseName 169 self.BaseName = ''
|
H A D | WorkspaceDatabase.py | 613 self._LibraryClasses[Library.BaseName, ':dummy:'] = Library 2210 BaseName = property(_GetBaseName) variable in class:InfBuildData
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/CommonDataClass/ |
H A D | CommonClass.py | 141 self.BaseName = ''
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/ |
H A D | VfrFormPkg.cpp | 408 IN CHAR8 *BaseName, 419 if ((BaseName == NULL) || (pFile == NULL)) { 423 fprintf (pFile, "\nunsigned char %sBin[] = {\n", BaseName); 407 GenCFile( IN CHAR8 *BaseName, IN FILE *pFile, IN PACKAGE_DATA *PkgData ) argument
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VolInfo/ |
H A D | VolInfo.c | 68 INT8 BaseName[MAX_BASENAME_LEN]; member in struct:_GUID_TO_BASENAME 1654 printf ("%s", GPtr->BaseName); 1705 if (sscanf (Line, "%s %s", GPtr->Guid, GPtr->BaseName) == 2) {
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Library/ |
H A D | Misc.py | 475 self.BaseName, self.Ext = os.path.splitext(self.Name) 557 self.BaseName, self.Ext = os.path.splitext(self.Name)
|
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/build/ |
H A D | build.py | 673 # @param BaseName The full file path of image. 680 def __init__(self, BaseName, Guid, Arch, OutputDir, DebugDir, ImageClass): 681 self.BaseName = BaseName 931 ModuleName = ModuleInfo.BaseName 933 ModuleDebugImage = os.path.join(ModuleInfo.DebugDir, ModuleInfo.BaseName + '.efi')
|
H A D | BuildReport.py | 357 self._DepexFileName = os.path.join(M.BuildDir, "OUTPUT", M.Module.BaseName + ".depex") 518 self.ModuleName = M.Module.BaseName 1252 self._GuidsDb[M.Guid.upper()] = "%s (%s)" % (M.Module.BaseName, InfPath)
|