Lines Matching refs:tmphstbuf
1287 struct hostent * gethostname_re (const char *host,struct hostent *hostbuf,char **tmphstbuf,size_t *… argument
1294 *tmphstbuf = (char *)malloc (*hstbuflen);
1298 gethostbyname_r(host,hostbuf,*tmphstbuf,*hstbuflen,&hp,&herr))
1302 *tmphstbuf = (char *)realloc (*tmphstbuf,*hstbuflen);
1313 struct hostent * gethostname_re (const char *host,struct hostent *hostbuf,char **tmphstbuf,size_t *… argument
1320 *tmphstbuf = (char *)malloc (*hstbuflen);
1324 gethostbyname_r(host,hostbuf,*tmphstbuf,*hstbuflen,&herr)))
1328 *tmphstbuf = (char *)realloc (*tmphstbuf,*hstbuflen);
1334 struct hostent * gethostname_re (const char *host,struct hostent *hostbuf,char **tmphstbuf,size_t *… argument
1338 *tmphstbuf = (char *)malloc (*hstbuflen);
1342 *tmphstbuf = (char *)realloc(*tmphstbuf, *hstbuflen);
1345 memset((void *)(*tmphstbuf),0,*hstbuflen);
1347 if (SUCCESS != gethostbyname_r(host,hostbuf,(struct hostent_data *)*tmphstbuf)) {