Home
last modified time | relevance | path

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

/packages/modules/DnsResolver/
Dgetaddrinfo.cpp1471 static void _sethtent(FILE** hostf) { in _sethtent() argument
1472 if (!*hostf) in _sethtent()
1473 *hostf = fopen(_PATH_HOSTS, "re"); in _sethtent()
1475 rewind(*hostf); in _sethtent()
1478 static void _endhtent(FILE** hostf) { in _endhtent() argument
1479 if (*hostf) { in _endhtent()
1480 (void) fclose(*hostf); in _endhtent()
1481 *hostf = NULL; in _endhtent()
1485 static struct addrinfo* _gethtent(FILE** hostf, const char* name, const struct addrinfo* pai) { in _gethtent() argument
1496 if (!*hostf && !(*hostf = fopen(_PATH_HOSTS, "re"))) return (NULL); in _gethtent()
[all …]