Lines Matching refs:he4
282 struct hostent *he4, *he6; in hosts() local
290 he4 = he6 = NULL; in hosts()
293 while ((he4 = gethostent()) != NULL) in hosts()
294 hostsprint(he4); in hosts()
303 he4 = gethostbyaddr(addr, INADDRSZ, AF_INET); in hosts()
304 if (he4 != NULL) in hosts()
305 hostsprint(he4); in hosts()
310 he4 = gethostbyname(argv[i]); in hosts()
311 if (he4 != NULL) in hosts()
312 hostsprint(he4); in hosts()
314 if ( he4 == NULL && he6 == NULL ) { in hosts()