Searched refs:getaddrinfo (Results 26 - 50 of 79) sorted by last modified time

1234

/external/libpcap/
H A Dscanner.c3683 if (getaddrinfo(pcap_text, NULL, &hints, &res))
H A Dscanner.l351 if (getaddrinfo(yytext, NULL, &hints, &res))
/external/libnl/lib/
H A Daddr.c672 * Call getaddrinfo() for an abstract address object.
676 * Calls getaddrinfo() for the specified abstract address in AI_NUMERICHOST
680 * interface provided by getaddrinfo(3).
695 err = getaddrinfo(buf, NULL, &hint, result);
/external/iputils/
H A Dping6.c483 gai = getaddrinfo(arg, 0, &hints, &ai0);
866 gai = getaddrinfo(target, NULL, &hints, &ai);
925 gai = getaddrinfo(target, NULL, &hints, &ai);
H A Dtracepath6.c443 gai = getaddrinfo(argv[0], pbuf, &hints, &ai0);
445 fprintf(stderr, "getaddrinfo: %s\n", gai_strerror(gai));
/external/ipsec-tools/
H A Dsetup.c100 if (getaddrinfo(server, "500", &hints, &info) != 0) {
/external/ipsec-tools/src/libipsec/
H A Dpolicy_parse.y410 error = getaddrinfo(addr, serv, &hints, &res);
/external/ipsec-tools/src/racoon/
H A Dkmpstat.c220 error = getaddrinfo(name, port, &hint, &ai);
H A Doakley.c1991 error = getaddrinfo(altname, NULL, &hints, &res);
H A Dracoonctl.c778 if (getaddrinfo(av[0], "4500", &hints, &res) != 0)
H A Dsockmisc.c990 error = getaddrinfo(host, port, &hints, &res);
993 "getaddrinfo(%s%s%s): %s\n",
1000 "getaddrinfo(%s%s%s): "
/external/iptables/libxtables/
H A Dxtables.c1636 if ((err = getaddrinfo(name, NULL, &hints, &res)) != 0) {
H A Dxtoptions.c521 ret = getaddrinfo(cb->arg, NULL, &hints, &res);
524 "getaddrinfo: %s\n", gai_strerror(ret));
564 ret = getaddrinfo(NULL, name, NULL, &res);
677 ret = getaddrinfo(cb->arg, NULL, &hints, &res);
/external/gtest/src/
H A Dgtest.cc3448 // Use the getaddrinfo() to get a linked list of IP addresses for
3450 const int error_num = getaddrinfo(
3453 GTEST_LOG_(WARNING) << "stream_result_to: getaddrinfo() failed: "
/external/fio/
H A Dconfigure1112 ret = getaddrinfo(NULL, NULL, &hints, NULL);
H A Dserver.c1436 ret = getaddrinfo(host, NULL, &hints, &res);
/external/fio/engines/
H A Dnet.c875 ret = getaddrinfo(host, NULL, &hints, res);
883 snprintf(str, sizeof(str), "getaddrinfo: %s", gai_strerror(ret));
/external/compiler-rt/lib/msan/tests/
H A Dmsan_test.cc878 TEST(MemorySanitizer, getaddrinfo) {
883 int res = getaddrinfo("localhost", NULL, &hints, &ai);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc1691 INTERCEPTOR(int, getaddrinfo, char *node, char *service,
1695 COMMON_INTERCEPTOR_ENTER(ctx, getaddrinfo, node, service, hints, out);
1704 int res = REAL(getaddrinfo)(node, service, hints, out);
1720 #define INIT_GETADDRINFO COMMON_INTERCEPT_FUNCTION(getaddrinfo);
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors.cc1896 TSAN_INTERCEPTOR(int, getaddrinfo, void *node, void *service,
1898 SCOPED_TSAN_INTERCEPTOR(getaddrinfo, node, service, hints, rv);
1899 // We miss atomic synchronization in getaddrinfo,
1901 // inside of getaddrinfo. So ignore memory accesses.
1903 int res = REAL(getaddrinfo)(node, service, hints, rv);
1995 // Causes interceptor recursion (getaddrinfo() and fopen())
2374 TSAN_INTERCEPT(getaddrinfo);
/external/compiler-rt/test/msan/
H A Dgetaddrinfo-positive.cc16 int res = getaddrinfo("localhost", NULL, NULL, &ai);
18 res = getaddrinfo("localhost", NULL, &hint, &ai);
21 // CHECK: #0 {{.*}} in main {{.*}}getaddrinfo-positive.cc:[[@LINE-3]]
H A Dgetaddrinfo.cc22 int res = getaddrinfo("not-in-etc-hosts", NULL, NULL, &ai);
/external/chromium_org/third_party/webrtc/test/channel_transport/
H A Dudp_transport_impl.cc2400 DWORD dwRetval = getaddrinfo(szHostName, NULL, &hints, &result);
2404 "getaddrinfo failed, error:%d", dwRetval);
2452 "getaddrinfo failed to find address");
/external/chromium_org/third_party/webrtc/base/
H A Dnethelpers.cc41 int ret = getaddrinfo(hostname.c_str(), NULL, &hints, &result);
/external/chromium_org/third_party/libvpx/source/libvpx/third_party/googletest/src/src/
H A Dgtest-all.cc4932 // Use the getaddrinfo() to get a linked list of IP addresses for
4934 const int error_num = getaddrinfo(
4937 GTEST_LOG_(WARNING) << "stream_result_to: getaddrinfo() failed: "

Completed in 463 milliseconds

1234