Searched defs:OfferIndex (Results 1 - 5 of 5) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/UefiPxeBcDxe/
H A DPxeBcImpl.h122 // OfferIndex records the index of the offer sent by the server indexed by ServerCount.
125 UINT32 OfferIndex[DHCP4_PACKET_TYPE_MAX][PXEBC_MAX_OFFER_NUM]; member in struct:_PXEBC_PRIVATE_DATA
H A DPxeBcDhcp.c92 @param OfferIndex Index of cached packets as complements of pxe mode data,
99 IN UINT32 OfferIndex
105 ASSERT (OfferIndex < Private->NumOffers);
106 ASSERT (OfferIndex < PXEBC_MAX_OFFER_NUM);
109 Offer = &Private->Dhcp4Offers[OfferIndex].Packet.Offer;
351 @param OfferIndex Pointer to the index of cached packets as complements of
360 OUT UINT32 *OfferIndex
367 *OfferIndex = Private->BinlIndex[Index];
371 if (PxeBcTryBinl (Private, *OfferIndex)) {
615 Private->OfferIndex[OfferTyp
640 UINT32 OfferIndex; local
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/UefiPxeBcDxe/
H A DPxeBcDhcp4.c628 @param[in] OfferIndex The received order of offer packets.
634 IN UINT32 OfferIndex
640 ASSERT (OfferIndex < Private->OfferNum);
641 ASSERT (OfferIndex < PXEBC_OFFER_MAX_NUM);
644 Offer = &Private->OfferBuffer[OfferIndex].Dhcp4.Packet.Offer;
754 Cache all the received DHCPv4 offers, and set OfferIndex and OfferCount.
787 // Determine whether cache the current offer by type, and record OfferIndex and OfferCount.
797 Private->OfferIndex[OfferType][0] = Private->OfferNum;
814 Private->OfferIndex[OfferType][Private->OfferCount[OfferType]] = Private->OfferNum;
820 Private->OfferIndex[OfferTyp
850 UINT32 OfferIndex; local
[all...]
H A DPxeBcDhcp6.c576 @param[in] OfferIndex The received order of offer packets.
582 IN UINT32 OfferIndex
588 ASSERT (OfferIndex < Private->OfferNum);
589 ASSERT (OfferIndex < PXEBC_OFFER_MAX_NUM);
592 Offer = &Private->OfferBuffer[OfferIndex].Dhcp6.Packet.Offer;
915 Cache all the received DHCPv6 offers, and set OfferIndex and OfferCount.
947 // Determine whether cache the current offer by type, and record OfferIndex and OfferCount.
963 Private->OfferIndex[OfferType][Private->OfferCount[OfferType]] = Private->OfferNum;
969 Private->OfferIndex[OfferType][0] = Private->OfferNum;
978 Private->OfferIndex[OfferTyp
998 UINT32 OfferIndex; local
[all...]
H A DPxeBcImpl.h181 // OfferIndex records the index of DhcpOffer[] buffer, and OfferCount records the num of each type of offer.
200 // OfferIndex: {[ 2, 5, 0, 6, 3, 0, *0, 0]
204 // (OfferIndex is 0-based.)
212 UINT32 OfferIndex[PxeOfferTypeMax][PXEBC_OFFER_MAX_NUM]; member in struct:_PXEBC_PRIVATE_DATA

Completed in 50 milliseconds