| /src/external/gpl3/gdb/dist/gnulib/import/ |
| arpa_inet.in.h | 36 /* On NonStop Kernel, inet_ntop and inet_pton are declared in <netdb.h>. 52 /* Get all possible declarations of inet_ntop() and inet_pton(). */ 120 # undef inet_pton macro 121 # define inet_pton rpl_inet_pton macro 123 _GL_FUNCDECL_RPL (inet_pton, int, 126 _GL_CXXALIAS_RPL (inet_pton, int, 130 _GL_FUNCDECL_SYS (inet_pton, int, 134 _GL_CXXALIAS_SYS (inet_pton, int, 138 _GL_CXXALIASWARN (inet_pton); variable 141 # undef inet_pton macro [all...] |
| /src/external/gpl3/gdb.old/dist/gnulib/import/ |
| arpa_inet.in.h | 36 /* On NonStop Kernel, inet_ntop and inet_pton are declared in <netdb.h>. 52 /* Get all possible declarations of inet_ntop() and inet_pton(). */ 120 # undef inet_pton macro 121 # define inet_pton rpl_inet_pton macro 123 _GL_FUNCDECL_RPL (inet_pton, int, 126 _GL_CXXALIAS_RPL (inet_pton, int, 130 _GL_FUNCDECL_SYS (inet_pton, int, 134 _GL_CXXALIAS_SYS (inet_pton, int, 138 _GL_CXXALIASWARN (inet_pton); variable 141 # undef inet_pton macro [all...] |
| /src/lib/libc/inet/ |
| Makefile.inc | 9 inet_network.c inet_ntoa.c inet_ntop.c inet_pton.c nsap_addr.c
|
| /src/external/mpl/bind/dist/bin/tools/ |
| arpaname.c | 30 if (inet_pton(AF_INET6, argv[1], buf) == 1) { 39 if (inet_pton(AF_INET, argv[1], buf) == 1) {
|
| /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/sys/posix/arpa/ |
| inet.d | 58 int inet_pton(int, const scope char*, void*); 82 int inet_pton(int, const scope char*, void*); 105 int inet_pton(int, const scope char*, void*); 128 int inet_pton(int, const scope char*, void*); 151 int inet_pton(int, const scope char*, void*); 184 int inet_pton(int, const scope char*, void*); 207 int inet_pton(int, const scope char*, void*); 230 int inet_pton(int, const scope char*, void*); 262 int inet_pton(int, const scope char*, void*); 285 int inet_pton(int, const scope char*, void*) [all...] |
| /src/external/mpl/bind/dist/tests/isc/ |
| sockaddr_test.c | 51 ret = inet_pton(AF_INET6, "::ffff:127.0.0.1", &in6); 103 int ret = inet_pton(AF_INET6, data6[i].string, &in6); 125 assert_true(inet_pton(AF_INET, "194.100.32.87", &ina_a) >= 0); 126 assert_true(inet_pton(AF_INET, "194.100.32.80", &ina_b) >= 0); 127 assert_true(inet_pton(AF_INET, "194.101.32.87", &ina_c) >= 0);
|
| netaddr_test.c | 87 assert_true(inet_pton(AF_INET, tests[i].addr, &na) >= 95 assert_true(inet_pton(AF_INET6, tests[i].addr, &na6) >= 132 r = inet_pton(AF_INET, tests[i].addr, 137 r = inet_pton(AF_INET6, tests[i].addr,
|
| /src/tests/net/inpcb/ |
| broadcast_bind.c | 77 rc = inet_pton(AF_INET, argv[1], &uc_addr); 80 err(1, "inet_pton(unicast)"); 82 errx(1, "inet_pton(unicast): error parsing %s", 85 rc = inet_pton(AF_INET, argv[2], &err_addr); 88 err(1, "inet_pton(error)"); 90 errx(1, "inet_pton(error): error parsing %s", argv[2]); 92 rc = inet_pton(AF_INET, argv[3], &bc_addr); 95 err(1, "inet_pton(broadcast)"); 97 errx(1, "inet_pton(broadcast): error parsing %s",
|
| /src/crypto/external/bsd/heimdal/dist/lib/roken/ |
| inet_pton.c | 1 /* $NetBSD: inet_pton.c,v 1.2 2017/01/28 21:31:50 christos Exp $ */ 43 inet_pton(int af, const char *csrc, void *dst) function 109 inet_pton(int af, const char *src, void *dst) function
|
| /src/external/bsd/libbind/dist/include/arpa/ |
| inet.h | 88 #define inet_pton __inet_pton macro 106 int inet_pton __P((int, const char *, void *));
|
| /src/include/arpa/ |
| inet.h | 91 int inet_pton(int, const char * __restrict,
|
| /src/external/bsd/ipf/dist/lib/ |
| genmask.c | 30 if (inet_pton(AF_INET6, msk, &mskp->in4) != 1)
|
| parsewhoisline.c | 56 if (inet_pton(AF_INET6, s, &a61.in6) != 1) 64 if (inet_pton(AF_INET6, s, &a62) != 1)
|
| /src/tests/net/if_vlan/ |
| siocXmulti.c | 95 rv = inet_pton(AF_INET, argv[ARG_ADDR], &sin->sin_addr); 101 rv = inet_pton(AF_INET6, argv[ARG_ADDR], &sin6->sin6_addr); 104 errx(1, "inet_pton(%s)", argv[ARG_ADDR]);
|
| /src/external/bsd/ntp/dist/libntp/ |
| decodenetnum.c | 84 * This works through 'inet_pton()' taking the brunt of the 87 * simple but must hold for all _VALID_ addresses. inet_pton() 137 * inet_pton() do the real work for AF_INET and AF_INET6, bail 142 if (inet_pton(afam, haddr, &netnum.sa4.sin_addr) <= 0) 149 if (inet_pton(afam, haddr, &netnum.sa6.sin6_addr) <= 0)
|
| is_ip_address.c | 57 if (inet_pton(AF_INET, host, &in4) == 1) {
|
| /src/tests/net/net/ |
| t_bind.c | 104 inet_pton(sfam, "1.1.1.1", &sin->sin_addr); 112 inet_pton(sfam, "2010:2020:2030:2040:2050:2060:2070:2080",
|
| /src/external/bsd/blocklist/test/ |
| cltest.c | 74 c = inet_pton(AF_INET6, a, &s6->sin6_addr); 80 c = inet_pton(AF_INET, a, &s->sin_addr);
|
| /src/usr.bin/getnameinfo/ |
| getnameinfo.c | 197 } else if (inet_pton(family, address, &addr_in->sin_addr) 209 } else if (inet_pton(family, address, &addr_in6->sin6_addr) 279 if (inet_pton(AF_INET, address, &ipv4_addr) == 1) 282 if (inet_pton(AF_INET6, address, &ipv6_addr) == 1)
|
| /src/external/bsd/ntp/lib/libiscntp/ |
| Makefile | 26 inet_pton.c \
|
| /src/external/bsd/wpa/dist/src/utils/ |
| ip_addr.c | 45 if (inet_pton(AF_INET6, txt, &addr->u.v6) > 0) {
|
| /src/external/mpl/dhcp/dist/tests/DHCPv6/ |
| 281-release-bad-address.pl | 74 my $iaaddr_option = inet_pton(AF_INET6, "1:2:3:4::"); 102 my $addr = inet_pton(AF_INET6, $All_DHCP_Servers);
|
| 283-release.pl | 76 my $iaaddr_option = inet_pton(AF_INET6, "3ffe:aaaa:aaaa:aaaa::ffff"); 104 my $addr = inet_pton(AF_INET6, $All_DHCP_Servers);
|
| 291-decline-bad-address.pl | 74 my $iaaddr_option = inet_pton(AF_INET6, "1:2:3:4::"); 102 my $addr = inet_pton(AF_INET6, $All_DHCP_Servers);
|
| 293-decline.pl | 76 my $iaaddr_option = inet_pton(AF_INET6, "3ffe:aaaa:aaaa:aaaa::ffff"); 104 my $addr = inet_pton(AF_INET6, $All_DHCP_Servers);
|