Lines Matching refs:result

105 _uncached_getipnodebyname(const char *nam, struct hostent *result,
108 return (_switch_getipnodebyname_r(nam, result, buffer, buflen,
114 struct hostent *result, char *buffer, int buflen, int *h_errnop)
118 result, buffer, buflen, h_errnop));
121 result, buffer, buflen, h_errnop));
309 nssout.nss.host.hent = buf6->result;
325 __find_mapped(buf6->result, 0) != 0) {
347 nssout.nss.host.hent = buf4->result;
374 * results, and the end result needs to be
382 hp = __mapv4tov6(buf4->result,
383 ((buf6 != NULL) ? buf6->result : NULL),
393 hp = buf6->result;
401 hp = __filter_addresses(AF_INET, buf6->result);
403 hp = __filter_addresses(AF_INET6, buf6->result);
419 hp = __mappedtov4(buf6->result, error_num);
422 hp = buf4->result;
453 if (buf6->result == hp)
454 buf6->result = NULL;
458 if (buf4->result == hp)
459 buf4->result = NULL;
535 nssout.nss.host.hent = buf->result;
549 sizeof (in_addr_t), AF_INET, buf->result,
561 hp = res->result;
562 (void) __mapv4tov6(buf->result, 0, res,
573 hp = buf->result;
612 nssout.nss.host.hent = buf->result;
625 hp = buf->result;
626 if (!gethostbyaddr_r(src, len, type, buf->result,
634 if ((hp = __mappedtov4(buf->result, error_num)) == NULL) {
662 nssout.nss.host.hent = buf->result;
854 host = (struct hostent *)res->result;
916 return (host); /* we're done, return result */
1097 host = (struct hostent *)res->result;
1183 * result in all addresses being filtered out, a NULL pointer is returned.
1258 * separates the result pointer (ptr to hostent+data buf) from the
1262 * bufp->result bufp->buffer
1281 if ((bufp->result = malloc(ALIGN(sizeof (struct hostent)) + bufsz)) ==
1286 bufp->buffer = (char *)(bufp->result) + sizeof (struct hostent);
1300 if (bufp->result != NULL)
1301 free(bufp->result);