Searched refs:Arch (Results 26 - 50 of 67) sorted by relevance

123

/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/GenFds/
H A DGenFds.py202 for Arch in ArchList:
203 GenFdsGlobalVariable.OutputDirFromDscDict[Arch] = NormPath(BuildWorkSpace.BuildObject[GenFdsGlobalVariable.ActivePlatform, Arch, Options.BuildTarget, Options.ToolChain].OutputDirectory)
204 GenFdsGlobalVariable.PlatformName = BuildWorkSpace.BuildObject[GenFdsGlobalVariable.ActivePlatform, Arch, Options.BuildTarget, Options.ToolChain].PlatformName
210 for Arch in ArchList:
211 GenFdsGlobalVariable.OutputDirDict[Arch] = OutputDirFromCommandLine
213 for Arch in ArchList:
214 GenFdsGlobalVariable.OutputDirDict[Arch] = os.path.join(GenFdsGlobalVariable.OutputDirFromDscDict[Arch], GenFdsGlobalVariable.TargetName + '_' + GenFdsGlobalVariable.ToolChainTag)
350 # @param ArchList The Arch lis
[all...]
H A DDepexSection.py41 for Arch in GenFdsGlobalVariable.ArchList:
43 Arch,
H A DGuidSection.py253 for Arch in self.CurrentArchList:
254 if Target+'_'+ToolChain+'_'+Arch not in self.KeyStringList:
255 self.KeyStringList.append(Target+'_'+ToolChain+'_'+Arch)
H A DFfsInfStatement.py357 # Get Arch list this INF built under
360 # @retval list Arch list
395 # Get Arch list of the module from this INF is to be placed into flash
398 # @retval list Arch list
415 Target, Tag, Arch = Key.split('_')
416 if Arch in CurArchList:
417 ArchList.append(Arch)
437 Arch = ArchList[0]
438 return Arch
456 Arch
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DParsing.py30 SqlCommand = """select Value1, Value2, BelongsToItem, StartLine, Arch from %s
60 SqlCommand = """select Value1, Value2, BelongsToItem, StartLine, Arch from %s
74 # and Arch = '%s')""" % \ *
105 # @param Arch: The Arch of item of section [Defines]
109 def QueryDefinesItem(Table, Name, Arch, BelongsToFile):
113 and Arch = '%s'
115 and Enabled > -1""" % (Table.Table, MODEL_META_DATA_HEADER, ConvertToSqlString2(Name), ConvertToSqlString2(Arch), BelongsToFile)
121 and Arch = '%s'
149 # @param Arch
[all...]
H A DString.py97 # @param Arch: The Arch to be added or merged
99 def MergeArches(Dict, Key, Arch):
101 Dict[Key].append(Arch)
103 Dict[Key] = Arch.split()
112 # @param Arch: Supportted Arch
119 def GenDefines(String, Arch, Defines):
123 Defines[(CleanString(List[0]), Arch)] = CleanString(List[1])
138 # @param Arch
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Library/
H A DParsing.py716 # @param Arch: DEFINE arch
719 SectionModel, Arch):
729 '', '', Arch, SectionModel, FileID, StartLine, -1, \
739 # @param ArchList: Arch list
749 Arch = ArchList[Index]
751 if Arch == '':
752 Arch = DataType.TAB_ARCH_COMMON
769 Records.append([LineValue, Arch, StartLine, IdNum, Third, Comment])
980 # if Arch.upper() is in "IA32", "X64", "IPF", and "EBC", it must be upper case. "common" must be lower case.
983 # @param Arch
[all...]
H A DString.py56 # @param Arch: The Arch to be added or merged
58 def MergeArches(Dict, Key, Arch):
60 Dict[Key].append(Arch)
62 Dict[Key] = Arch.split()
71 # @param Arch: Supportted Arch
74 def GenDefines(String, Arch, Defines):
79 Defines[(CleanString(List[0]), Arch)] = CleanString(List[1])
132 # [LibraryClass.Arch
[all...]
H A DMisc.py442 Arch='COMMON', ToolChainFamily='', Target='', TagName='', \
444 self.Arch = Arch
793 # In UDP spec, Arch is only allowed as: [A-Z]([a-zA-Z0-9])*
805 for Arch in ArchList:
806 Arch = Arch.upper()
807 NewArchList.append(Arch)
H A DParserValidate.py150 # @param Arch The arch string need to be validated
154 # @param Arch: Input arch
156 def IsValidArch(Arch):
157 if Arch == 'common':
160 if ReIsValieArch.match(Arch) == None:
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Parser/
H A DInfSectionParser.py153 # S1 is always Arch
156 Arch = ItemList[1]
158 Arch = 'COMMON'
159 ArchList.add(Arch)
172 return Arch, ArchList
338 # Get Arch
438 # Hob has Arch attribute, need to be handled specially here
446 Arch = Match.groups(1)[0].upper()
447 ArchList.append(Arch)
H A DInfPackageSectionParser.py134 if not InfSectionObject.SetPackages(PackageList, Arch = ArchList):
H A DInfSourceSectionParser.py140 if not InfSectionObject.SetSources(SourceList, Arch = ArchList):
H A DDecParser.py89 # @param Scope: Format: [[SectionName, Arch], ...].
848 Arch = 'COMMON'
851 Arch = Token.upper()
852 if not IsValidArch(Arch):
854 ArchList.add(Arch)
856 if [UserExtension, UserId, IdString, Arch] not in \
859 [UserExtension, UserId, IdString, Arch]
919 # SectionName.Arch except UserExtention
927 # S1 is always Arch
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/build/
H A Dbuild.py318 (Obj.BuildTarget, Obj.ToolChain, Obj.Arch),
341 and self.BuildObject.Arch == Other.BuildObject.Arch
350 return hash(self.BuildObject) + hash(self.BuildObject.Arch)
642 self.BuildItem.BuildObject.Arch,
675 # @param Arch Arch of this image.
680 def __init__(self, BaseName, Guid, Arch, OutputDir, DebugDir, ImageClass):
683 self.Arch = Arch
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/AutoGen/
H A DGenMake.py451 % (self._AutoGenObject.BuildTarget, self._AutoGenObject.ToolChain, self._AutoGenObject.Arch),
462 if self._AutoGenObject.AutoGenVersion < 0x00010005 and self._AutoGenObject.Arch == "EBC":
467 if self._AutoGenObject.Arch == "EBC":
573 "architecture" : self._AutoGenObject.Arch,
743 if self._AutoGenObject.Arch not in gDependencyDatabase:
744 gDependencyDatabase[self._AutoGenObject.Arch] = {}
745 DepDb = gDependencyDatabase[self._AutoGenObject.Arch]
985 "architecture" : self._AutoGenObject.Arch,
1171 "build_architecture_list" : self._AutoGenObject.Arch,
1172 "architecture" : self._AutoGenObject.Arch,
[all...]
H A DBuildEngine.py344 self.RuleDatabase = tdict(True, 4) # {FileExt, ModuleType, Arch, Family : FileBuildRule object}
432 for Arch in self._ArchList:
433 Database[self._FileType, BuildType, Arch, Family] = BuildRule
450 Arch = 'COMMON'
468 # new format: File-Type.Build-Type.Arch
480 Arch = TokenList[2]
483 if Arch not in self._ArchList:
484 self._ArchList.append(Arch)
575 # Key = (FileExt, ModuleType, Arch, ToolChainFamily)
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Xml/
H A DCommonXml.py97 [Arch for Arch in GetSplitValueList(XmlAttribute(Item, 'SupArchList'), DataType.TAB_SPACE_SPLIT) if Arch]
507 Arch = XmlAttribute(XmlNode(SubItem, '%s/Statement' % Key), 'SupArchList')
508 self.BuildOptionDict[Arch] = Statement
513 Arch = XmlAttribute(XmlNode(SubItem, '%s/Statement' % Key), 'SupArchList')
514 self.IncludesDict[Statement] = Arch
528 self.SupArchList = [Arch for Arch in GetSplitValueList(SupArch, DataType.TAB_SPACE_SPLIT) if Arch]
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Object/Parser/
H A DInfPcdObject.py44 # Validate Arch
312 # Validate Arch
465 def SetValueDatumTypeMaxSizeToken(PcdItem, CurrentLineOfPcdItem, PcdItemObj, Arch, PackageInfo = None):
495 (Key[1] == 'COMMON' or Key[1] == Arch):
501 PcdItemObj.SetSupportArchList([Arch])
504 (Key[1] == 'COMMON' or Key[1] == Arch):
510 PcdItemObj.SetSupportArchList([Arch])
517 if Key == 'COMMON' or Key == Arch:
H A DInfGuidObject.py230 def SetGuid(self, GuidList, Arch = None):
232 for ArchItem in Arch:
234 # Validate Arch
H A DInfPpiObject.py210 def SetPpi(self, PpiList, Arch = None):
212 for ArchItem in Arch:
214 # Validate Arch
H A DInfProtocolObject.py200 def SetProtocol(self, ProtocolContent, Arch = None,):
202 for ArchItem in Arch:
204 # Validate Arch
H A DInfSoucesObject.py208 def SetSources(self, SourceList, Arch = None):
210 for ArchItem in Arch:
212 # Validate Arch
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/UefiPxeBcDxe/
H A DPxeBcDhcp6.h116 PXEBC_DHCP6_OPTION_ARCH *Arch; member in union:__anon12587
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/GenMetaFile/
H A DGenDecFile.py334 for Arch in UserExtension.GetSupArchList():
335 SectionList.append(SectionName + '.' + Arch)

Completed in 108 milliseconds

123