Home
last modified time | relevance | path

Searched refs:Module (Results 1 – 25 of 1778) sorted by relevance

12345678910>>...72

/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Xml/
DXmlParser.py194 Module = Msa.FromXml(Item, 'ModuleSurfaceArea', True)
195 … ModuleKey = (Module.GetGuid(), Module.GetVersion(), Module.GetName(), Module.GetModulePath())
196 self.DistP.ModuleSurfaceArea[ModuleKey] = Module
251 for Module in DistP.ModuleSurfaceArea.values():
253 DomModule = Msa.ToXml(Module)
329 def ValidateMS(Module, TopXmlTreeLevel): argument
330 ValidateMS1(Module, TopXmlTreeLevel)
331 ValidateMS2(Module, TopXmlTreeLevel)
332 ValidateMS3(Module, TopXmlTreeLevel)
341 def ValidateMS1(Module, TopXmlTreeLevel): argument
[all …]
DModuleSurfaceAreaXml.py616 self.Module = None
622 def FromXml2(self, Item, Module): argument
623 if self.Module:
633 Module.SetPeiDepex(PeiDepexList)
643 Module.SetDxeDepex(DxeDepexList)
653 Module.SetSmmDepex(SmmDepexList)
660 Module.SetMiscFileList([MiscFileList])
662 Module.SetMiscFileList([])
670 Module.SetUserExtensionList(Module.GetUserExtensionList() + [UserExtension])
672 return Module
[all …]
/device/linaro/bootloader/edk2/MdePkg/Include/Library/
DPerformanceLib.h49 IN CONST CHAR8 *Module, OPTIONAL
81 IN CONST CHAR8 *Module, OPTIONAL
130 OUT CONST CHAR8 **Module,
163 IN CONST CHAR8 *Module, OPTIONAL
198 IN CONST CHAR8 *Module, OPTIONAL
250 OUT CONST CHAR8 **Module,
281 #define PERF_END(Handle, Token, Module, TimeStamp) \ argument
284 EndPerformanceMeasurement (Handle, Token, Module, TimeStamp); \
295 #define PERF_START(Handle, Token, Module, TimeStamp) \ argument
298 StartPerformanceMeasurement (Handle, Token, Module, TimeStamp); \
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeCorePerformanceLib/
DDxeCorePerformanceLib.c87 IN CONST CHAR8 *Module, OPTIONAL in InternalSearchForGaugeEntry() argument
99 if (Module == NULL) { in InternalSearchForGaugeEntry()
100 Module = ""; in InternalSearchForGaugeEntry()
113 … AsciiStrnCmp (GaugeEntryExArray[Index2].Module, Module, DXE_PERFORMANCE_STRING_LENGTH) == 0) { in InternalSearchForGaugeEntry()
152 IN CONST CHAR8 *Module, OPTIONAL in StartGaugeEx() argument
196 if (Module != NULL) { in StartGaugeEx()
197 …AsciiStrnCpyS (GaugeEntryExArray[Index].Module, DXE_PERFORMANCE_STRING_SIZE, Module, DXE_PERFORMAN… in StartGaugeEx()
244 IN CONST CHAR8 *Module, OPTIONAL in EndGaugeEx() argument
256 Index = InternalSearchForGaugeEntry (Handle, Token, Module, Identifier); in EndGaugeEx()
342 IN CONST CHAR8 *Module, OPTIONAL in StartGauge() argument
[all …]
DDxeCorePerformanceLibInternal.h69 IN CONST CHAR8 *Module, OPTIONAL
105 IN CONST CHAR8 *Module, OPTIONAL
168 IN CONST CHAR8 *Module, OPTIONAL
201 IN CONST CHAR8 *Module, OPTIONAL
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Workspace/
DWorkspaceCommon.py72 def GetLiabraryInstances(Module, Platform, BuildDatabase, Arch, Target, Toolchain): argument
73 if Module.AutoGenVersion >= 0x00010005:
74 return _GetModuleLibraryInstances(Module, Platform, BuildDatabase, Arch, Target, Toolchain)
76 return _ResolveLibraryReference(Module, Platform)
78 def _GetModuleLibraryInstances(Module, Platform, BuildDatabase, Arch, Target, Toolchain): argument
79 ModuleType = Module.ModuleType
82 PlatformModule = Platform.Modules[str(Module)]
89 if Module.ModuleType != SUP_MODULE_USER_DEFINED:
91 … if LibraryClass.startswith("NULL") and Platform.LibraryClasses[LibraryClass, Module.ModuleType]:
92Module.LibraryClasses[LibraryClass] = Platform.LibraryClasses[LibraryClass, Module.ModuleType]
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Library/PeiPerformanceLib/
DPeiPerformanceLib.c117 IN CONST CHAR8 *Module, OPTIONAL in InternalSearchForLogEntry() argument
130 if (Module == NULL) { in InternalSearchForLogEntry()
131 Module = ""; in InternalSearchForLogEntry()
143 AsciiStrnCmp (LogEntryArray[Index2].Module, Module, PEI_PERFORMANCE_STRING_LENGTH) == 0) { in InternalSearchForLogEntry()
178 IN CONST CHAR8 *Module, OPTIONAL in StartPerformanceMeasurementEx() argument
206 if (Module != NULL) { in StartPerformanceMeasurementEx()
207 …AsciiStrnCpyS (LogEntryArray[Index].Module, PEI_PERFORMANCE_STRING_SIZE, Module, PEI_PERFORMANCE_S… in StartPerformanceMeasurementEx()
250 IN CONST CHAR8 *Module, OPTIONAL in EndPerformanceMeasurementEx() argument
265 …nalSearchForLogEntry (PeiPerformanceLog, PeiPerformanceIdArray, Handle, Token, Module, Identifier); in EndPerformanceMeasurementEx()
322 OUT CONST CHAR8 **Module, in GetPerformanceMeasurementEx() argument
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxePerformanceLib/
DDxePerformanceLib.c108 IN CONST CHAR8 *Module, OPTIONAL in StartPerformanceMeasurementEx() argument
121 Status = mPerformanceEx->StartGaugeEx (Handle, Token, Module, TimeStamp, Identifier); in StartPerformanceMeasurementEx()
123 Status = mPerformance->StartGauge (Handle, Token, Module, TimeStamp); in StartPerformanceMeasurementEx()
160 IN CONST CHAR8 *Module, OPTIONAL in EndPerformanceMeasurementEx() argument
173 Status = mPerformanceEx->EndGaugeEx (Handle, Token, Module, TimeStamp, Identifier); in EndPerformanceMeasurementEx()
175 Status = mPerformance->EndGauge (Handle, Token, Module, TimeStamp); in EndPerformanceMeasurementEx()
230 OUT CONST CHAR8 **Module, in GetPerformanceMeasurementEx() argument
243 ASSERT (Module != NULL); in GetPerformanceMeasurementEx()
278 *Module = GaugeData->Module; in GetPerformanceMeasurementEx()
315 IN CONST CHAR8 *Module, OPTIONAL in StartPerformanceMeasurement() argument
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Library/SmmPerformanceLib/
DSmmPerformanceLib.c130 IN CONST CHAR8 *Module, OPTIONAL in StartPerformanceMeasurementEx() argument
143 Status = mPerformanceEx->StartGaugeEx (Handle, Token, Module, TimeStamp, Identifier); in StartPerformanceMeasurementEx()
145 Status = mPerformance->StartGauge (Handle, Token, Module, TimeStamp); in StartPerformanceMeasurementEx()
182 IN CONST CHAR8 *Module, OPTIONAL in EndPerformanceMeasurementEx() argument
195 Status = mPerformanceEx->EndGaugeEx (Handle, Token, Module, TimeStamp, Identifier); in EndPerformanceMeasurementEx()
197 Status = mPerformance->EndGauge (Handle, Token, Module, TimeStamp); in EndPerformanceMeasurementEx()
252 OUT CONST CHAR8 **Module, in GetPerformanceMeasurementEx() argument
265 ASSERT (Module != NULL); in GetPerformanceMeasurementEx()
300 *Module = GaugeData->Module; in GetPerformanceMeasurementEx()
337 IN CONST CHAR8 *Module, OPTIONAL in StartPerformanceMeasurement() argument
[all …]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
DEdkIIWorkspaceBuild.py391 def __init__(self, Arch, Platform = None, Package = None, Module = None): argument
511 Module = Item.FilePath
512 self.AddToInfDatabase(Module)
518 self.UpdateLibraryClassOfModule(Module, Lib.Name, Arch, Lib.FilePath)
524 Module = self.InfDatabase[InfFile].Module
528 for Item in Module.PackageDependencies:
592 if ItemArch not in Library.Module.Header:
594 Pb.Libraries[Library.Module.Header[ItemArch].Name] = Item.FilePath
722 Module = self.InfDatabase[Inf].Module
725 … if not self.IsModuleDefinedInPlatform(Inf, Arch, InfList) or Arch not in Module.Header:
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Library/SmmCorePerformanceLib/
DSmmCorePerformanceLib.c95 IN CONST CHAR8 *Module, OPTIONAL in SmmSearchForGaugeEntry() argument
107 if (Module == NULL) { in SmmSearchForGaugeEntry()
108 Module = ""; in SmmSearchForGaugeEntry()
121 … AsciiStrnCmp (GaugeEntryExArray[Index2].Module, Module, SMM_PERFORMANCE_STRING_LENGTH) == 0) { in SmmSearchForGaugeEntry()
160 IN CONST CHAR8 *Module, OPTIONAL in StartGaugeEx() argument
207 if (Module != NULL) { in StartGaugeEx()
208 …AsciiStrnCpyS (GaugeEntryExArray[Index].Module, SMM_PERFORMANCE_STRING_SIZE, Module, SMM_PERFORMAN… in StartGaugeEx()
257 IN CONST CHAR8 *Module, OPTIONAL in EndGaugeEx() argument
271 Index = SmmSearchForGaugeEntry (Handle, Token, Module, Identifier); in EndGaugeEx()
360 IN CONST CHAR8 *Module, OPTIONAL in StartGauge() argument
[all …]
DSmmCorePerformanceLibInternal.h72 IN CONST CHAR8 *Module, OPTIONAL
108 IN CONST CHAR8 *Module, OPTIONAL
171 IN CONST CHAR8 *Module, OPTIONAL
204 IN CONST CHAR8 *Module, OPTIONAL
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/
DInstallPkg.py250 Module = None
254 Module = DistPkg.ModuleSurfaceArea[Guid, Version, Name, Path]
255 Logger.Info(ST.MSG_INSTALL_MODULE % Module.GetName())
271 …InstallModuleContent(ModulePath, NewModulePath, '', Module, ContentZipFile, WorkspaceDir, ModuleLi…
276 Module.SetModulePath(Module.GetModulePath().replace(Path, NewModulePath, 1))
278 NewDict[Guid, Version, Name, Module.GetModulePath()] = Module
283 for (Module, Package) in ModuleList:
284 CheckCNameInModuleRedefined(Module, DistPkg)
285 FilePath = ModuleToInf(Module, Package, DistPkg.Header)
292 if (FilePath, Md5Sum) not in Module.FileList:
[all …]
/device/linaro/bootloader/edk2/MdePkg/Library/BasePerformanceLibNull/
DPerformanceLib.c49 IN CONST CHAR8 *Module, OPTIONAL in StartPerformanceMeasurement() argument
84 IN CONST CHAR8 *Module, OPTIONAL in EndPerformanceMeasurement() argument
136 OUT CONST CHAR8 **Module, in GetPerformanceMeasurement() argument
143 ASSERT (Module != NULL); in GetPerformanceMeasurement()
178 IN CONST CHAR8 *Module, OPTIONAL in StartPerformanceMeasurementEx() argument
216 IN CONST CHAR8 *Module, OPTIONAL in EndPerformanceMeasurementEx() argument
271 OUT CONST CHAR8 **Module, in GetPerformanceMeasurementEx() argument
279 ASSERT (Module != NULL); in GetPerformanceMeasurementEx()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/unittest/test/
Dtest_setups.py267 class Module(object): class
271 Module.moduleSetup += 1
279 sys.modules['Module'] = Module
282 self.assertEqual(Module.moduleSetup, 1)
287 class Module(object): class
292 Module.moduleSetup += 1
296 Module.moduleTornDown += 1
319 sys.modules['Module'] = Module
322 self.assertEqual(Module.moduleSetup, 1)
323 self.assertEqual(Module.moduleTornDown, 0)
[all …]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Core/
DDependencyRules.py258 for Module in DpModuleList:
259 if Module in WsModuleList:
260 WsModuleList.remove(Module)
263 ST.ERR_MODULE_NOT_INSTALLED % Module)
295 for Module in WsModuleList:
296 if (not VerifyRemoveModuleDep(Module, DpPackagePathList)):
298 DependModuleList.append(Module)
319 for Module in DpModuleList:
320 if Module in WsModuleList:
321 WsModuleList.remove(Module)
[all …]
DDistributionPackageClass.py225 Module = None
228 Module = ModuleDict[Guid, Version, Name, Path]
229 ModulePath = Module.GetModulePath()
230 FullPath = Module.GetFullPath()
235 if Module.UniFileClassObject:
236 for UniFile in Module.UniFileClassObject.IncFileList:
241 for IncludeFile in Module.UniFileClassObject.IncludePathList:
249 Module = self.ModuleSurfaceArea[Guid, Version, Name, Path]
250 ModulePath = Module.GetModulePath()
251 FullPath = Module.GetFullPath()
[all …]
/device/linaro/bootloader/edk2/FatPkg/
DFatPkg.uni2 // Module implementations for FAT file system, FAT 32 UEFI Driver and FAT PEI Module
21 …BSTRACT #language en-US "Module implementations for FAT file system, FAT 32 UEFI Driver…
23 …ckage contains module implementation about FAT file system, FAT 32 UEFI Driver and FAT PEI Module."
/device/linaro/bootloader/edk2/MdeModulePkg/Include/Guid/
DPerformance.h30 CHAR8 Module[PEI_PERFORMANCE_STRING_SIZE]; ///< Module string name. member
95 CHAR8 Module[DXE_PERFORMANCE_STRING_SIZE]; ///< Module string name. member
103 CHAR8 Module[DXE_PERFORMANCE_STRING_SIZE]; ///< Module string name. member
184 IN CONST CHAR8 *Module, OPTIONAL
217 IN CONST CHAR8 *Module, OPTIONAL
275 IN CONST CHAR8 *Module, OPTIONAL
311 IN CONST CHAR8 *Module, OPTIONAL
/device/linaro/bootloader/edk2/MdePkg/Library/PeimEntryPoint/
DPeimEntryPoint.uni2 // Module entry point library for PEIM.
4 // Module entry point library for PEIM.
18 #string STR_MODULE_ABSTRACT #language en-US "Module entry point library for PEIM"
20 #string STR_MODULE_DESCRIPTION #language en-US "Module entry point library for PEIM."
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeSmmPerformanceLib/
DDxeSmmPerformanceLib.c161 IN CONST CHAR8 *Module, OPTIONAL in StartPerformanceMeasurementEx() argument
198 IN CONST CHAR8 *Module, OPTIONAL in EndPerformanceMeasurementEx() argument
231 IN CONST CHAR8 *Module, OPTIONAL in StartPerformanceMeasurement() argument
265 IN CONST CHAR8 *Module, OPTIONAL in EndPerformanceMeasurement() argument
319 OUT CONST CHAR8 **Module, in GetByPerformanceProtocol() argument
358 *Module = GaugeData->Module; in GetByPerformanceProtocol()
697 OUT CONST CHAR8 **Module, in GetPerformanceMeasurementEx() argument
709 ASSERT (Module != NULL); in GetPerformanceMeasurementEx()
725 Module, in GetPerformanceMeasurementEx()
754 Module, in GetPerformanceMeasurementEx()
[all …]
/device/linaro/bootloader/edk2/MdePkg/Library/PeiCoreEntryPoint/
DPeiCoreEntryPoint.uni2 // Module entry point library for PEI core.
4 // Module entry point library for PEI core.
18 #string STR_MODULE_ABSTRACT #language en-US "Module entry point library for PEI core"
20 #string STR_MODULE_DESCRIPTION #language en-US "Module entry point library for PEI core."
/device/linaro/bootloader/edk2/MdePkg/Library/DxeCoreEntryPoint/
DDxeCoreEntryPoint.uni2 // Module entry point library for DXE core.
4 // Module entry point library for DXE core.
18 #string STR_MODULE_ABSTRACT #language en-US "Module entry point library for DXE core"
20 #string STR_MODULE_DESCRIPTION #language en-US "Module entry point library for DXE core."
/device/linaro/bootloader/edk2/MdePkg/Library/UefiApplicationEntryPoint/
DUefiApplicationEntryPoint.uni2 // Module entry point library for UEFI Application.
4 // Module entry point library for UEFI Application.
18 #string STR_MODULE_ABSTRACT #language en-US "Module entry point library for UEFI Applic…
20 #string STR_MODULE_DESCRIPTION #language en-US "Module entry point library for UEFI Applic…
/device/linaro/bootloader/edk2/MdePkg/Library/UefiDriverEntryPoint/
DUefiDriverEntryPoint.uni2 // Module entry point library for UEFI driver, DXE driver and SMM driver.
4 // Module entry point library for UEFI driver, DXE driver and SMM driver.
18 #string STR_MODULE_ABSTRACT #language en-US "Module entry point library for UEFI driver…
20 #string STR_MODULE_DESCRIPTION #language en-US "Module entry point library for UEFI driver…

12345678910>>...72