Home | History | Annotate | Download | only in UefiPxeBcDxe

Lines Matching full:discover

886   @retval     Others                Failed to discover the boot file.

898 EFI_PXE_BASE_CODE_DHCPV6_PACKET *Discover;
924 Discover = AllocateZeroPool (sizeof (EFI_PXE_BASE_CODE_DHCPV6_PACKET));
925 if (Discover == NULL) {
932 Discover->TransactionId = ProxyOffer->Dhcp6.Header.TransactionId;
933 Discover->MessageType = Request->Dhcp6.Header.MessageType;
935 DiscoverOpt = Discover->DhcpOptions;
981 Discover->DhcpOptions,
1001 (VOID *) Discover
1010 // Especially for PXE discover packet, store it into mode data here.
1972 // Cache the dhcp discover packet to mode data directly.
2004 // Store the request packet as seed packet for discover.
2065 @retval Others Failed to discover the boot file.
2081 EFI_PXE_BASE_CODE_DHCPV6_PACKET *Discover;
2108 Discover = AllocateZeroPool (sizeof (EFI_PXE_BASE_CODE_DHCPV6_PACKET));
2109 if (Discover == NULL) {
2114 // Build the discover packet by the cached request packet before.
2117 Discover->TransactionId = HTONL (Xid);
2118 Discover->MessageType = Request->Dhcp6.Header.MessageType;
2120 DiscoverOpt = Discover->DhcpOptions;
2151 (VOID *) Discover
2159 // Especially for PXE discover packet, store it into mode data here.
2162 CopyMem (&Mode->PxeDiscover.Dhcpv6, Discover, DiscoverLen);