Home | History | Annotate | Download | only in Dhcp6Dxe

Lines Matching refs:IaAddressCount

394   ASSERT (IaCb->Ia->IaAddressCount > 0);

403 for (Index = 0; Index < IaCb->Ia->IaAddressCount; Index++) {
449 for (Index2 = 0; Index2 < Ia->IaAddressCount; Index2++) {
499 AddressCount = Ia->IaAddressCount;
511 if (AddressCount == Ia->IaAddressCount) {
520 Ia->IaAddressCount = 0;
533 for (Index2 = 0; Index2 < Ia->IaAddressCount; Index2++) {
551 if (Index2 + 1 < Ia->IaAddressCount) {
555 (Ia->IaAddressCount - Index2 - 1) * sizeof (EFI_DHCP6_IA_ADDRESS)
565 Ia->IaAddressCount -= AddressCount;
566 IaCopy->IaAddressCount = AddressCount;
797 for (Index = 0; Index < Ia->IaAddressCount; Index++) {
1023 for (Index = 0; Index < CurrentIa->IaAddressCount; Index++) {
1171 Ia->IaAddressCount = AddrNum;
1226 IaSize = sizeof (EFI_DHCP6_IA) + (Ia->IaAddressCount - 1) * sizeof (EFI_DHCP6_IA_ADDRESS);
1259 if ((CacheIa != NULL) && (CacheIa->IaAddressCount != 0)) {
1263 NewIaSize = sizeof (EFI_DHCP6_IA) + (Ia->IaAddressCount + CacheIa->IaAddressCount - 1) * sizeof (EFI_DHCP6_IA_ADDRESS);
1269 IaSize = sizeof (EFI_DHCP6_IA) + (Ia->IaAddressCount - 1) * sizeof (EFI_DHCP6_IA_ADDRESS);
1275 for (Index = 0; Index < CacheIa->IaAddressCount; Index++) {
1279 NewIa->IaAddressCount += CacheIa->IaAddressCount;
1280 Ptr = (UINT8*)&NewIa->IaAddress[Ia->IaAddressCount];
1281 CopyMem (Ptr, CacheIa->IaAddress, CacheIa->IaAddressCount * sizeof (EFI_DHCP6_IA_ADDRESS));