Lines Matching defs:result_buf
250 struct netent result_buf;
263 * then *result is set pointing to result_buf; otherwise, *result
270 err = getnetbyname_r(name, &result_buf, buf, sizeof buf, &np,
283 struct netent result_buf;
286 np = getnetbyname_r(name, &result_buf, buf, (int)sizeof buf);
291 struct netent result_buf;
294 if (getnetbyname_r(name, &result_buf, &net_data) == -1)
297 np = &result_buf;
516 struct protoent result_buf;
520 err = getprotobyname_r(str, &result_buf, buf, sizeof buf, &p);
532 struct protoent result_buf;
535 p = getprotobyname_r(str, &result_buf, buf, (int)sizeof buf);
540 struct protoent result_buf;
543 if (getprotobyname_r(str, &result_buf, &proto_data) == -1)
546 p = &result_buf;