Home
last modified time | relevance | path

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

/packages/modules/DnsResolver/
Dgetaddrinfo.cpp1480 struct addrinfo *res0, *res; in _gethtent() local
1512 error = getaddrinfo_numeric(addr, nullptr, *pai, &res0); in _gethtent()
1514 for (res = res0; res; res = res->ai_next) { in _gethtent()
1520 freeaddrinfo(res0); in _gethtent()
1525 return res0; in _gethtent()
1531 struct addrinfo *res0, *res; in getCustomHosts() local
1535 int error = getaddrinfo_numeric(host.c_str(), nullptr, *pai, &res0); in getCustomHosts()
1536 if (!error && res0 != nullptr) { in getCustomHosts()
1537 res->ai_next = res0; in getCustomHosts()
1538 res = res0; in getCustomHosts()
[all …]