Home | History | Annotate | Download | only in Ip6Dxe

Lines Matching refs:Dhcp6

144   @retval    EFI_UNSUPPORTED   The DHCP6 driver is not available.

156 EFI_DHCP6_PROTOCOL *Dhcp6;
207 (VOID **) &Instance->Dhcp6,
214 Dhcp6 = Instance->Dhcp6;
215 Dhcp6->Configure (Dhcp6, NULL);
244 Status = Dhcp6->Configure (Dhcp6, &Dhcp6CfgData);
249 Status = Dhcp6->Start (Dhcp6);
266 Status = Dhcp6->InfoRequest (
267 Dhcp6,
1453 @param[in] Dhcp6 The pointer to the EFI_DHCP6_PROTOCOL instance.
1464 IN EFI_DHCP6_PROTOCOL *Dhcp6,
1484 Status = Dhcp6->Parse (Dhcp6, Reply, &OptCount, NULL);
1494 Status = Dhcp6->Parse (Dhcp6, Reply, &OptCount, OptList);
1614 if (Instance->Dhcp6 != NULL) {
1615 Instance->Dhcp6->Decline (
1616 Instance->Dhcp6,
1646 EFI_DHCP6_PROTOCOL *Dhcp6;
1669 Dhcp6 = Instance->Dhcp6;
1671 Status = Dhcp6->GetModeData (Dhcp6, &Dhcp6ModeData, NULL);
1735 Ip6ConfigParseDhcpReply (Dhcp6, Instance, Dhcp6ModeData.Ia->ReplyPacket);
1789 // The DHCP6 child is already created or the policy is no longer AUTOMATIC.
2338 Destroy the Dhcp6 child in IP6_CONFIG_INSTANCE and release the resources.
2353 EFI_DHCP6_PROTOCOL *Dhcp6;
2355 Dhcp6 = Instance->Dhcp6;
2356 ASSERT (Dhcp6 != NULL);
2358 Dhcp6->Stop (Dhcp6);
2359 Dhcp6->Configure (Dhcp6, NULL);
2360 Instance->Dhcp6 = NULL;