Searched refs:hostf (Results 1 – 1 of 1) sorted by relevance
1473 static void _sethtent(FILE** hostf) { in _sethtent() argument1474 if (!*hostf) in _sethtent()1475 *hostf = fopen(_PATH_HOSTS, "re"); in _sethtent()1477 rewind(*hostf); in _sethtent()1480 static void _endhtent(FILE** hostf) { in _endhtent() argument1481 if (*hostf) { in _endhtent()1482 (void) fclose(*hostf); in _endhtent()1483 *hostf = NULL; in _endhtent()1487 static struct addrinfo* _gethtent(FILE** hostf, const char* name, const struct addrinfo* pai) { in _gethtent() argument1498 if (!*hostf && !(*hostf = fopen(_PATH_HOSTS, "re"))) return (NULL); in _gethtent()[all …]