Lines Matching refs:RRCount

1128   UINT32                RRCount;  in ParseDnsResponse()  local
1150 RRCount = 0; in ParseDnsResponse()
1359 Dns4RR[RRCount].QName = AllocateZeroPool (AsciiStrLen (QueryName) + 1); in ParseDnsResponse()
1360 if (Dns4RR[RRCount].QName == NULL) { in ParseDnsResponse()
1364 CopyMem (Dns4RR[RRCount].QName, QueryName, AsciiStrLen (QueryName)); in ParseDnsResponse()
1365 Dns4RR[RRCount].QType = AnswerSection->Type; in ParseDnsResponse()
1366 Dns4RR[RRCount].QClass = AnswerSection->Class; in ParseDnsResponse()
1367 Dns4RR[RRCount].TTL = AnswerSection->Ttl; in ParseDnsResponse()
1368 Dns4RR[RRCount].DataLength = AnswerSection->DataLength; in ParseDnsResponse()
1369 Dns4RR[RRCount].RData = AllocateZeroPool (Dns4RR[RRCount].DataLength); in ParseDnsResponse()
1370 if (Dns4RR[RRCount].RData == NULL) { in ParseDnsResponse()
1374 CopyMem (Dns4RR[RRCount].RData, AnswerData, Dns4RR[RRCount].DataLength); in ParseDnsResponse()
1376 RRCount ++; in ParseDnsResponse()
1385 Dns6RR[RRCount].QName = AllocateZeroPool (AsciiStrLen (QueryName) + 1); in ParseDnsResponse()
1386 if (Dns6RR[RRCount].QName == NULL) { in ParseDnsResponse()
1390 CopyMem (Dns6RR[RRCount].QName, QueryName, AsciiStrLen (QueryName)); in ParseDnsResponse()
1391 Dns6RR[RRCount].QType = AnswerSection->Type; in ParseDnsResponse()
1392 Dns6RR[RRCount].QClass = AnswerSection->Class; in ParseDnsResponse()
1393 Dns6RR[RRCount].TTL = AnswerSection->Ttl; in ParseDnsResponse()
1394 Dns6RR[RRCount].DataLength = AnswerSection->DataLength; in ParseDnsResponse()
1395 Dns6RR[RRCount].RData = AllocateZeroPool (Dns6RR[RRCount].DataLength); in ParseDnsResponse()
1396 if (Dns6RR[RRCount].RData == NULL) { in ParseDnsResponse()
1400 CopyMem (Dns6RR[RRCount].RData, AnswerData, Dns6RR[RRCount].DataLength); in ParseDnsResponse()
1402 RRCount ++; in ParseDnsResponse()
1553 Dns4TokenEntry->Token->RspData.GLookupData->RRCount = RRCount; in ParseDnsResponse()
1566 Dns6TokenEntry->Token->RspData.GLookupData->RRCount = RRCount; in ParseDnsResponse()