Home | History | Annotate | Download | only in Common

Lines Matching refs:FvList

3529     #   @retval FvList      list of FV in FD

3533 FvList = []
3539 if elementRegionData != None and elementRegionData.upper() not in FvList:
3540 FvList.append(elementRegionData.upper())
3541 return FvList
3570 # @param FvList referenced FV by section
3572 def __GetReferencedFdFvTupleFromSection(self, FfsFile, FdList = [], FvList = []):
3579 if SectionObj.FvName != None and SectionObj.FvName.upper() not in FvList:
3580 FvList.append(SectionObj.FvName.upper())
3581 if SectionObj.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)