Home
last modified time | relevance | path

Searched refs:DelayNode (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/NetworkPkg/Ip6Dxe/
DIp6If.c97 IP6_DELAY_JOIN_LIST *DelayNode; in Ip6SetAddress() local
178 DelayNode = (IP6_DELAY_JOIN_LIST *) AllocatePool (sizeof (IP6_DELAY_JOIN_LIST)); in Ip6SetAddress()
179 if (DelayNode == NULL) { in Ip6SetAddress()
184 DelayNode->DelayTime = (UINT32) (DivU64x32 (Delay, IP6_TIMER_INTERVAL_IN_MS)); in Ip6SetAddress()
185 DelayNode->Interface = Interface; in Ip6SetAddress()
186 DelayNode->AddressInfo = AddressInfo; in Ip6SetAddress()
187 DelayNode->DadCallback = DadCallback; in Ip6SetAddress()
188 DelayNode->Context = Context; in Ip6SetAddress()
190 InsertTailList (&Interface->DelayJoinList, &DelayNode->Link); in Ip6SetAddress()
DIp6Nd.c2768 IP6_DELAY_JOIN_LIST *DelayNode; in Ip6NdFasterTimerTicking() local
2807 DelayNode = NET_LIST_USER_STRUCT (Entry2, IP6_DELAY_JOIN_LIST, Link); in Ip6NdFasterTimerTicking()
2808 if ((DelayNode->DelayTime == 0) || (--DelayNode->DelayTime == 0)) { in Ip6NdFasterTimerTicking()
2813 DelayNode->Interface, in Ip6NdFasterTimerTicking()
2814 DelayNode->AddressInfo, in Ip6NdFasterTimerTicking()
2815 DelayNode->DadCallback, in Ip6NdFasterTimerTicking()
2816 DelayNode->Context in Ip6NdFasterTimerTicking()
2822 RemoveEntryList (&DelayNode->Link); in Ip6NdFasterTimerTicking()
2823 FreePool (DelayNode); in Ip6NdFasterTimerTicking()
DIp6ConfigImpl.c55 IP6_DELAY_JOIN_LIST *DelayNode; in Ip6ConfigOnPolicyChanged() local
103 DelayNode = NET_LIST_USER_STRUCT (Entry2, IP6_DELAY_JOIN_LIST, Link); in Ip6ConfigOnPolicyChanged()
104 if (!NetIp6IsLinkLocalAddr (&DelayNode->AddressInfo->Address)) { in Ip6ConfigOnPolicyChanged()
105 RemoveEntryList (&DelayNode->Link); in Ip6ConfigOnPolicyChanged()
106 FreePool (DelayNode); in Ip6ConfigOnPolicyChanged()