OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:OfferCount
(Results
1 - 7
of
7
) sorted by null
/device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
HttpBootDhcp4.c
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) {
[
all
...]
HttpBootDhcp6.c
353
Cache all the received DHCPv6 offers, and set OfferIndex and
OfferCount
.
392
// Determine whether cache the current offer by type, and record OfferIndex and
OfferCount
.
396
ASSERT (Private->
OfferCount
[OfferType] < HTTP_BOOT_OFFER_MAX_NUM);
397
Private->OfferIndex[OfferType][Private->
OfferCount
[OfferType]] = Private->OfferNum;
398
Private->
OfferCount
[OfferType]++;
455
// the OfferIndex and
OfferCount
.
972
ZeroMem (Private->
OfferCount
, sizeof (Private->
OfferCount
));
HttpBootImpl.c
390
ZeroMem (Private->
OfferCount
, sizeof (Private->
OfferCount
));
HttpBootDxe.h
209
// OfferIndex records the index of DhcpOffer[] buffer, and
OfferCount
records the num of each type of offer.
226
//
OfferCount
: [ 2, 1, 0, 1, 2, 1, 1]
239
UINT32
OfferCount
[HttpOfferTypeMax];
/device/linaro/bootloader/edk2/NetworkPkg/UefiPxeBcDxe/
PxeBcDhcp4.c
804
Cache all the received DHCPv4 offers, and set OfferIndex and
OfferCount
.
844
// Determine whether cache the current offer by type, and record OfferIndex and
OfferCount
.
853
if (Private->
OfferCount
[OfferType] == 0) {
855
Private->
OfferCount
[OfferType] = 1;
860
ASSERT (Private->
OfferCount
[OfferType] < PXEBC_OFFER_MAX_NUM);
871
Private->OfferIndex[OfferType][Private->
OfferCount
[OfferType]] = Private->OfferNum;
872
Private->
OfferCount
[OfferType]++;
873
} else if (Private->
OfferCount
[OfferType] > 0) {
878
Private->
OfferCount
[OfferType] = 1;
886
Private->OfferIndex[OfferType][Private->
OfferCount
[OfferType]] = Private->OfferNum;
[
all
...]
PxeBcDhcp6.c
[
all
...]
PxeBcImpl.h
191
// OfferIndex records the index of DhcpOffer[] buffer, and
OfferCount
records the num of each type of offer.
208
//
OfferCount
: [ 2(n), 1(n), 0(n), 1(n), 1(1), 0(1), 3(n), 1(1)]
221
UINT32
OfferCount
[PxeOfferTypeMax];
Completed in 50 milliseconds