Lines Matching refs:Cache6
654 IN PXEBC_DHCP6_PACKET_CACHE *Cache6 in PxeBcParseDhcp6Packet() argument
669 Offer = &Cache6->Packet.Offer; in PxeBcParseDhcp6Packet()
670 Options = Cache6->OptList; in PxeBcParseDhcp6Packet()
672 ZeroMem (Cache6->OptList, sizeof (Cache6->OptList)); in PxeBcParseDhcp6Packet()
746 Cache6->OfferType = OfferType; in PxeBcParseDhcp6Packet()
1071 PXEBC_DHCP6_PACKET_CACHE *Cache6; in PxeBcRetryDhcp6Binl() local
1116 Cache6 = &Private->ProxyOffer.Dhcp6; in PxeBcRetryDhcp6Binl()
1117 Status = PxeBcParseDhcp6Packet (Cache6); in PxeBcRetryDhcp6Binl()
1122 if (Cache6->OfferType != PxeOfferTypeProxyPxe10 && in PxeBcRetryDhcp6Binl()
1123 Cache6->OfferType != PxeOfferTypeProxyWfm11a && in PxeBcRetryDhcp6Binl()
1124 Cache6->OptList[PXEBC_DHCP6_IDX_BOOT_FILE_URL] == NULL) { in PxeBcRetryDhcp6Binl()
1135 &Cache6->Packet.Offer.Dhcp6, in PxeBcRetryDhcp6Binl()
1136 Cache6->Packet.Offer.Length in PxeBcRetryDhcp6Binl()
1158 PXEBC_DHCP6_PACKET_CACHE *Cache6; in PxeBcCacheDhcp6Offer() local
1163 Cache6 = &Private->OfferBuffer[Private->OfferNum].Dhcp6; in PxeBcCacheDhcp6Offer()
1164 Offer = &Cache6->Packet.Offer; in PxeBcCacheDhcp6Offer()
1177 if (EFI_ERROR (PxeBcParseDhcp6Packet (Cache6))) { in PxeBcCacheDhcp6Offer()
1184 OfferType = Cache6->OfferType; in PxeBcCacheDhcp6Offer()
1345 PXEBC_DHCP6_PACKET_CACHE *Cache6; in PxeBcHandleDhcp6Offer() local
1355 Cache6 = &Private->OfferBuffer[SelectIndex].Dhcp6; in PxeBcHandleDhcp6Offer()
1361 if (Cache6->OptList[PXEBC_DHCP6_IDX_DNS_SERVER] != NULL) { in PxeBcHandleDhcp6Offer()
1362 …Private->DnsServer = AllocateZeroPool (NTOHS (Cache6->OptList[PXEBC_DHCP6_IDX_DNS_SERVER]->OpLen)); in PxeBcHandleDhcp6Offer()
1366 …CopyMem (Private->DnsServer, Cache6->OptList[PXEBC_DHCP6_IDX_DNS_SERVER]->Data, sizeof (EFI_IPv6_A… in PxeBcHandleDhcp6Offer()
1369 if (Cache6->OfferType == PxeOfferTypeDhcpBinl) { in PxeBcHandleDhcp6Offer()
1376 } else if (Cache6->OfferType == PxeOfferTypeDhcpOnly) { in PxeBcHandleDhcp6Offer()
1453 ASSERT (Cache6->OptList[PXEBC_DHCP6_IDX_BOOT_FILE_URL] != NULL); in PxeBcHandleDhcp6Offer()