Home | History | Annotate | Download | only in HttpBootDxe

Lines Matching refs:OfferCount

434   Cache all the received DHCPv4 offers, and set OfferIndex and OfferCount.

473 // Determine whether cache the current offer by type, and record OfferIndex and OfferCount.
477 ASSERT (Private->OfferCount[OfferType] < HTTP_BOOT_OFFER_MAX_NUM);
478 Private->OfferIndex[OfferType][Private->OfferCount[OfferType]] = Private->OfferNum;
479 Private->OfferCount[OfferType]++;
505 if (Private->OfferCount[HttpOfferTypeDhcpDns] > 0) {
509 } else if (Private->OfferCount[HttpOfferTypeDhcpIpUriDns] > 0) {
513 } else if (Private->OfferCount[HttpOfferTypeDhcpNameUriDns] > 0) {
517 } else if (Private->OfferCount[HttpOfferTypeDhcpOnly] > 0) {
521 } else if (Private->OfferCount[HttpOfferTypeDhcpIpUri] > 0) {
537 if (Private->OfferCount[HttpOfferTypeDhcpIpUri] > 0) {
541 } else if (Private->OfferCount[HttpOfferTypeDhcpIpUriDns] > 0) {
545 }else if (Private->OfferCount[HttpOfferTypeDhcpNameUriDns] > 0) {
549 } else if (Private->OfferCount[HttpOfferTypeDhcpOnly] > 0 &&
550 Private->OfferCount[HttpOfferTypeProxyIpUri] > 0) {
555 } else if (Private->OfferCount[HttpOfferTypeDhcpDns] > 0 &&
556 Private->OfferCount[HttpOfferTypeProxyIpUri] > 0) {
561 } else if (Private->OfferCount[HttpOfferTypeDhcpDns] > 0 &&
562 Private->OfferCount[HttpOfferTypeProxyNameUri] > 0) {
567 } else if (Private->OfferCount[HttpOfferTypeDhcpDns] > 0 &&
568 Private->OfferCount[HttpOfferTypeDhcpNameUri] > 0) {
645 // the OfferIndex and OfferCount.
850 ZeroMem (Private->OfferCount, sizeof (Private->OfferCount));