Lines Matching refs:result_buf
250 struct netent result_buf; in pcap_nametonetaddr() local
270 err = getnetbyname_r(name, &result_buf, buf, sizeof buf, &np, in pcap_nametonetaddr()
283 struct netent result_buf; in pcap_nametonetaddr() local
286 np = getnetbyname_r(name, &result_buf, buf, (int)sizeof buf); in pcap_nametonetaddr()
291 struct netent result_buf; in pcap_nametonetaddr() local
294 if (getnetbyname_r(name, &result_buf, &net_data) == -1) in pcap_nametonetaddr()
297 np = &result_buf; in pcap_nametonetaddr()
516 struct protoent result_buf; in pcap_nametoproto() local
520 err = getprotobyname_r(str, &result_buf, buf, sizeof buf, &p); in pcap_nametoproto()
532 struct protoent result_buf; in pcap_nametoproto() local
535 p = getprotobyname_r(str, &result_buf, buf, (int)sizeof buf); in pcap_nametoproto()
540 struct protoent result_buf; in pcap_nametoproto() local
543 if (getprotobyname_r(str, &result_buf, &proto_data) == -1) in pcap_nametoproto()
546 p = &result_buf; in pcap_nametoproto()