Home
last modified time | relevance | path

Searched refs:Dns6CacheEntry (Results 1 – 1 of 1) sorted by relevance

/device/linaro/bootloader/edk2/NetworkPkg/DnsDxe/
DDnsImpl.c1136 EFI_DNS6_CACHE_ENTRY *Dns6CacheEntry; in ParseDnsResponse() local
1158 Dns6CacheEntry = NULL; in ParseDnsResponse()
1487 Dns6CacheEntry = AllocateZeroPool (sizeof (EFI_DNS6_CACHE_ENTRY)); in ParseDnsResponse()
1488 if (Dns6CacheEntry == NULL) { in ParseDnsResponse()
1492Dns6CacheEntry->HostName = AllocateZeroPool (2 * (StrLen(Dns6TokenEntry->QueryHostName) + 1)); in ParseDnsResponse()
1493 if (Dns6CacheEntry->HostName == NULL) { in ParseDnsResponse()
1497 …CopyMem (Dns6CacheEntry->HostName, Dns6TokenEntry->QueryHostName, 2 * (StrLen(Dns6TokenEntry->Quer… in ParseDnsResponse()
1498 Dns6CacheEntry->IpAddress = AllocateZeroPool (sizeof (EFI_IPv6_ADDRESS)); in ParseDnsResponse()
1499 if (Dns6CacheEntry->IpAddress == NULL) { in ParseDnsResponse()
1503 CopyMem (Dns6CacheEntry->IpAddress, AnswerData, sizeof (EFI_IPv6_ADDRESS)); in ParseDnsResponse()
[all …]