Home
last modified time | relevance | path

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

/packages/modules/DnsResolver/
Dgetaddrinfo.cpp1490 struct addrinfo *res0, *res; in _gethtent() local
1522 error = getaddrinfo_numeric(addr, nullptr, *pai, &res0); in _gethtent()
1524 for (res = res0; res; res = res->ai_next) { in _gethtent()
1530 freeaddrinfo(res0); in _gethtent()
1535 return res0; in _gethtent()
1541 struct addrinfo *res0, *res; in getCustomHosts() local
1545 int error = getaddrinfo_numeric(host.c_str(), nullptr, *pai, &res0); in getCustomHosts()
1546 if (!error && res0 != nullptr) { in getCustomHosts()
1547 res->ai_next = res0; in getCustomHosts()
1548 res = res0; in getCustomHosts()
[all …]