Searched refs:IfList (Results 1 - 4 of 4) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/Application/IfConfig6/
H A DIfConfig6.h66 LIST_ENTRY IfList; member in struct:_IFCONFIG6_PRIVATE_DATA
H A DIfConfig6.c647 @param[in] IfList The pointer of IfList(interface list).
657 IN LIST_ENTRY *IfList
856 InsertTailList (IfList, &IfCb->Link);
894 @param[in] IfList The pointer of IfList(interface list).
902 IN LIST_ENTRY *IfList
910 Entry = IfList->ForwardLink;
913 if (IsListEmpty (IfList)) {
920 while (Entry != IfList) {
1081 IfConfig6SetInterfaceInfo( IN LIST_ENTRY *IfList, IN ARG_LIST *VarArg ) argument
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/GenFds/
H A DFdfParser.py641 def __GetIfListCurrentItemStat(self, IfList):
642 if len(IfList) == 0:
645 for Item in IfList:
659 # IfList is a stack of if branches with elements of list [Pos, CondSatisfied, BranchDetermined]
660 IfList = []
665 if self.__GetIfListCurrentItemStat(IfList):
700 if self.__GetIfListCurrentItemStat(IfList):
734 IfList.append([IfStartPos, None, None])
740 ConditionSatisfied = self.__EvaluateConditional(Expression, IfList[-1][0][0] + 1, 'eval')
742 ConditionSatisfied = self.__EvaluateConditional(Expression, IfList[
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DFdfParserLite.py541 # IfList is a stack of if branches with elements of list [Pos, CondSatisfied, BranchDetermined]
542 IfList = []
569 IfList.append([IfStartPos, None, None])
592 ConditionSatisfied = self.__EvaluateConditional(MacroName, IfList[-1][0][0] + 1, Op, MacroValue)
598 ConditionSatisfied = self.__EvaluateConditional(MacroName, IfList[-1][0][0] + 1, None, 'Bool')
602 IfList[-1] = [IfList[-1][0], ConditionSatisfied, BranchDetermined]
604 self.__WipeOffArea.append((IfList[-1][0], (self.CurrentLineNumber - 1, self.CurrentOffsetWithinLine - 1)))
607 ConditionSatisfied = self.__EvaluateConditional(MacroName, IfList[-1][0][0] + 1)
611 IfList[
[all...]

Completed in 50 milliseconds