Searched refs:BaseName (Results 1 - 25 of 27) sorted by relevance

12

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/AutoGen/
H A DStrGather.py141 # @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 DBuildEngine.py236 SrcFileName, SrcFileBase, SrcFileExt = SourceFile.Name, SourceFile.BaseName, SourceFile.Ext
251 DestFileBase, DestFileExt = self.DestFileList[0].BaseName, self.DestFileList[0].Ext
H A DGenMake.py541 # 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 DAutoGen.py2037 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 DGenDecFile.py242 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 DGenInfFile.py136 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 DFfsInfStatement.py129 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 DGenFdsGlobalVariable.py128 Macro["MODULE_NAME" ] = Inf.BaseName
133 Macro["MODULE_FILE_BASE_NAME" ] = PathClassObj.BaseName
137 Macro["BASE_NAME" ] = Inf.BaseName
152 PathClassObj.BaseName
H A DGenFds.py513 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 DInfDefineObject.py185 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 DVpdInfoFile.py230 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 DEdkIIWorkspaceBuild.py134 # @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 DMisc.py1360 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 DIniToXml.py124 [], [['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 DCommonXml.py138 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 DCommonObject.py310 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 Dc.py359 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 DBuildClassObject.py128 # @var BaseName: To store value for BaseName
169 self.BaseName = ''
H A DWorkspaceDatabase.py613 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 DCommonClass.py141 self.BaseName = ''
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/
H A DVfrFormPkg.cpp408 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 DVolInfo.c68 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 DMisc.py475 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 Dbuild.py673 # @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 DBuildReport.py357 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)

Completed in 544 milliseconds

12