Home | History | Annotate | Download | only in Modules

Lines Matching refs:hp_allocated

5120     struct hostent hp_allocated;
5140 gethostbyname_r(name, &hp_allocated, buf, buf_len,
5143 h = gethostbyname_r(name, &hp_allocated, buf, buf_len, &errnop);
5146 result = gethostbyname_r(name, &hp_allocated, &data);
5147 h = (result != 0) ? NULL : &hp_allocated;
5190 struct hostent hp_allocated;
5237 &hp_allocated, buf, buf_len,
5241 &hp_allocated, buf, buf_len, &errnop);
5244 result = gethostbyaddr_r(ap, al, af, &hp_allocated, &data);
5245 h = (result != 0) ? NULL : &hp_allocated;