/src/tests/lib/libc/net/ |
h_hostent.c | 116 struct hostent hent; local in function:main 123 info.hp = &hent;
|
/src/lib/libc/net/ |
sethostent.c | 156 struct hostent *hp, hent; local in function:_hf_gethtbyname2 180 hent.h_name = NULL; /* XXX: gcc */ 181 hent.h_addrtype = 0; /* XXX: gcc */ 182 hent.h_length = 0; /* XXX: gcc */ 202 hent.h_addrtype = af = hp->h_addrtype; 203 hent.h_length = hp->h_length; 205 HENT_SCOPY(hent.h_name, hp->h_name, ptr, len); 235 hp->h_addrtype = hent.h_addrtype; 236 hp->h_length = hent.h_length; 246 HENT_SCOPY(hp->h_name, hent.h_name, ptr, len) [all...] |
getnameinfo.c | 393 struct hostent hent; local in function:getnameinfo_inet 396 hp = gethostbyaddr_r(addr, afd->a_addrlen, afd->a_af, &hent,
|
/src/usr.sbin/lpr/pac/ |
pac.c | 84 struct hent { struct 85 struct hent *h_link; /* Forward hash link */ 91 static struct hent *hashtab[HSHSIZE]; /* Hash table proper */ 97 static struct hent *enter(const char *); 98 static struct hent *lookup(const char *); 214 struct hent *hp; 251 struct hent **base; 252 struct hent *hp, **ap; 296 struct hent *hp; 333 static struct hent * [all...] |
/src/lib/libradius/ |
radlib.c | 352 struct hostent *hent; local in function:rad_add_server 354 if ((hent = gethostbyname(host)) == NULL) { 358 (void)memcpy(&srvp->addr.sin_addr, hent->h_addr,
|