Searched refs:FvList (Results 1 – 9 of 9) sorted by relevance
/device/linaro/bootloader/edk2/BaseTools/Source/Python/GenFds/ |
D | Vtf.py | 68 FvList = self.GetFvList() 98 Index = FvList.index(ComponentObj.CompLoc.upper()) 153 FvList = [] 155 if component.CompLoc.upper() != 'NONE' and not (component.CompLoc.upper() in FvList): 156 FvList.append(component.CompLoc.upper()) 158 return FvList 167 FvList = self.GetFvList() 169 for i in FvList: 186 FvList = self.GetFvList() 189 for FvObj in FvList:
|
D | Fd.py | 150 FvList = [] 155 FvList.append(RegionData.upper()) 161 FvList.append(RegionData.upper()) 180 if set(compLocList).issubset(FvList):
|
D | FdfParser.py | 4597 FvList = [] 4605 if elementRegionData != None and elementRegionData.upper() not in FvList: 4606 FvList.append(elementRegionData.upper()) 4607 return FvList 4638 def __GetReferencedFdFvTupleFromSection(self, FfsFile, FdList = [], FvList = []): argument 4645 if SectionObj.FvName != None and SectionObj.FvName.upper() not in FvList: 4646 FvList.append(SectionObj.FvName.upper()) 4647 …Obj.Fv != None and SectionObj.Fv.UiFvName != None and SectionObj.Fv.UiFvName.upper() not in FvList: 4648 FvList.append(SectionObj.Fv.UiFvName.upper()) 4649 self.__GetReferencedFdFvTuple(SectionObj.Fv, FdList, FvList)
|
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/ProcessDsc/ |
D | FWVolume.c | 194 char *FvList, 1413 char *FvList, in OrderInFvList() argument 1423 while (*FvList) { in OrderInFvList() 1427 if (_strnicmp (FvList, FvName, strlen (FvName)) == 0) { in OrderInFvList() 1432 if ((FvList[strlen (FvName)] == ',') || (FvList[strlen (FvName)] == 0)) { in OrderInFvList() 1435 } else if (FvList[strlen (FvName)] == ':') { in OrderInFvList() 1436 *Order = atoi (FvList + strlen (FvName) + 1); in OrderInFvList() 1443 while ((*FvList != ',') && (*FvList != 0)) { in OrderInFvList() 1444 FvList++; in OrderInFvList() 1449 if (*FvList == ',') { in OrderInFvList() [all …]
|
/device/linaro/bootloader/edk2/IntelFsp2Pkg/Tools/ |
D | SplitFspBin.py | 442 self.FvList = [] 453 self.FvList = [] 460 self.FvList.append(fv) 480 for idx, fv in enumerate(self.FvList): 613 print ("\nFound the following %d Firmware Volumes in FSP binary:" % (len(fd.FvList))) 614 for idx, fv in enumerate(fd.FvList): 651 fv = fd.FvList[fsp.FvIdxList[0]] 672 fv = fd.FvList[fvidx] 713 fv = fd.FvList[fvidx]
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/build/ |
D | BuildReport.py | 1341 if FvSection.FvName in self.FvList: 1344 self.FvList.append(FvSection.FvName) 1366 self.FvList = [] 1382 if FvName in self.FvList: 1384 self.FvList.append(FvName) 1425 for FvName in self.FvList: 1522 if (len(self.FvList) > 0): 1523 for FvItem in self.FvList:
|
D | build.py | 754 self.FvList = BuildOptions.FvImage 1639 self.FvList, 1726 self.FvList, 1819 self.FvList, 1968 self.FvList,
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/ |
D | FdfParserLite.py | 3533 FvList = [] 3539 if elementRegionData != None and elementRegionData.upper() not in FvList: 3540 FvList.append(elementRegionData.upper()) 3541 return FvList 3572 def __GetReferencedFdFvTupleFromSection(self, FfsFile, FdList = [], FvList = []): argument 3579 if SectionObj.FvName != None and SectionObj.FvName.upper() not in FvList: 3580 FvList.append(SectionObj.FvName.upper()) 3581 …Obj.Fv != None and SectionObj.Fv.UiFvName != None and SectionObj.Fv.UiFvName.upper() not in FvList: 3582 FvList.append(SectionObj.Fv.UiFvName.upper()) 3583 self.__GetReferencedFdFvTuple(SectionObj.Fv, FdList, FvList)
|
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Eot/ |
D | FvImage.py | 1308 def __init__(self, FvList): argument 1311 for FvPath in FvList:
|