Lines Matching full:he
51 _gethostbynis(const char *name, char *map, int af, struct hostent *he, in _gethostbynis() argument
99 he->h_addr_list = hed->h_addr_ptrs; in _gethostbynis()
100 he->h_addr = (char *)hed->host_addr; in _gethostbynis()
121 he->h_addr_list[1] = NULL; in _gethostbynis()
122 he->h_length = size; in _gethostbynis()
123 he->h_addrtype = af; in _gethostbynis()
128 he->h_name = bp; in _gethostbynis()
129 q = he->h_aliases = hed->host_aliases; in _gethostbynis()
164 _gethostbynisname_r(const char *name, int af, struct hostent *he, in _gethostbynisname_r() argument
177 return (_gethostbynis(name, map, af, he, hed)); in _gethostbynisname_r()
182 struct hostent *he, struct hostent_data *hed) in _gethostbynisaddr_r() argument
197 return (_gethostbynis(numaddr, map, af, he, hed)); in _gethostbynisaddr_r()
210 struct hostent *hptr, he; in _nis_gethostbyname() local
231 if (_gethostbynisname_r(name, af, &he, hed) != 0) { in _nis_gethostbyname()
235 if (__copy_hostent(&he, hptr, buffer, buflen) != 0) { in _nis_gethostbyname()
259 struct hostent *hptr, he; in _nis_gethostbyaddr() local
281 if (_gethostbynisaddr_r(addr, len, af, &he, hed) != 0) { in _nis_gethostbyaddr()
285 if (__copy_hostent(&he, hptr, buffer, buflen) != 0) { in _nis_gethostbyaddr()