HomeSort by relevance Sort by last modified time
    Searched refs:OfferCount (Results 1 - 7 of 7) sorted by null

  /device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
HttpBootDhcp4.c 420 Cache all the received DHCPv4 offers, and set OfferIndex and OfferCount.
453 // Determine whether cache the current offer by type, and record OfferIndex and OfferCount.
457 ASSERT (Private->OfferCount[OfferType] < HTTP_BOOT_OFFER_MAX_NUM);
458 Private->OfferIndex[OfferType][Private->OfferCount[OfferType]] = Private->OfferNum;
459 Private->OfferCount[OfferType]++;
485 if (Private->OfferCount[HttpOfferTypeDhcpIpUri] > 0) {
489 } else if (Private->OfferCount[HttpOfferTypeDhcpNameUriDns] > 0) {
493 } else if (Private->OfferCount[HttpOfferTypeDhcpOnly] > 0 &&
494 Private->OfferCount[HttpOfferTypeProxyIpUri] > 0) {
499 } else if (Private->OfferCount[HttpOfferTypeDhcpDns] > 0 &&
    [all...]
HttpBootImpl.c 307 ZeroMem (Private->OfferCount, sizeof (Private->OfferCount));
HttpBootDhcp6.c 342 Cache all the received DHCPv6 offers, and set OfferIndex and OfferCount.
374 // Determine whether cache the current offer by type, and record OfferIndex and OfferCount.
378 ASSERT (Private->OfferCount[OfferType] < HTTP_BOOT_OFFER_MAX_NUM);
379 Private->OfferIndex[OfferType][Private->OfferCount[OfferType]] = Private->OfferNum;
380 Private->OfferCount[OfferType]++;
431 // the OfferIndex and OfferCount.
945 ZeroMem (Private->OfferCount, sizeof (Private->OfferCount));
HttpBootDxe.h 154 // OfferIndex records the index of DhcpOffer[] buffer, and OfferCount records the num of each type of offer.
171 // OfferCount: [ 2, 1, 0, 1, 2, 1, 1]
184 UINT32 OfferCount[HttpOfferTypeMax];
  /device/linaro/bootloader/edk2/NetworkPkg/UefiPxeBcDxe/
PxeBcDhcp4.c 775 Cache all the received DHCPv4 offers, and set OfferIndex and OfferCount.
808 // Determine whether cache the current offer by type, and record OfferIndex and OfferCount.
817 if (Private->OfferCount[OfferType] == 0) {
819 Private->OfferCount[OfferType] = 1;
824 ASSERT (Private->OfferCount[OfferType] < PXEBC_OFFER_MAX_NUM);
835 Private->OfferIndex[OfferType][Private->OfferCount[OfferType]] = Private->OfferNum;
836 Private->OfferCount[OfferType]++;
837 } else if (Private->OfferCount[OfferType] > 0) {
842 Private->OfferCount[OfferType] = 1;
850 Private->OfferIndex[OfferType][Private->OfferCount[OfferType]] = Private->OfferNum;
    [all...]
PxeBcDhcp6.c 914 Cache all the received DHCPv6 offers, and set OfferIndex and OfferCount.
946 // Determine whether cache the current offer by type, and record OfferIndex and OfferCount.
950 ASSERT (Private->OfferCount[OfferType] < PXEBC_OFFER_MAX_NUM);
962 Private->OfferIndex[OfferType][Private->OfferCount[OfferType]] = Private->OfferNum;
963 Private->OfferCount[OfferType]++;
964 } else if (Private->OfferCount[OfferType] > 0) {
969 Private->OfferCount[OfferType] = 1;
977 Private->OfferIndex[OfferType][Private->OfferCount[OfferType]] = Private->OfferNum;
978 Private->OfferCount[OfferType]++;
1006 if (Private->OfferCount[PxeOfferTypeDhcpPxe10] > 0) {
    [all...]
PxeBcImpl.h 187 // OfferIndex records the index of DhcpOffer[] buffer, and OfferCount records the num of each type of offer.
204 // OfferCount: [ 2(n), 1(n), 0(n), 1(n), 1(1), 0(1), 3(n), 1(1)]
217 UINT32 OfferCount[PxeOfferTypeMax];

Completed in 521 milliseconds