HomeSort by relevance Sort by last modified time
    Searched refs:inet_pton (Results 76 - 100 of 110) sorted by null

1 2 34 5

  /external/iptables/extensions/
libip6t_rt.c 60 if ((err=inet_pton(AF_INET6, num, &ap)) == 1)
  /external/iputils/
traceroute6.c 450 if (inet_pton(AF_INET6, *argv, &to->sin6_addr) > 0) {
569 if (inet_pton(AF_INET6, source, &saddr.sin6_addr) <= 0)
  /external/libsepol/src/
node_record.c 54 if (inet_pton(AF_INET, addr_str, &in_addr) <= 0) {
67 if (inet_pton(AF_INET6, addr_str, &in_addr) <= 0) {
  /libcore/luni/src/main/java/libcore/io/
ForwardingOs.java 82 public InetAddress inet_pton(int family, String address) { return os.inet_pton(family, address); } method in class:ForwardingOs
Os.java 74 public InetAddress inet_pton(int family, String address); method in interface:Os
Posix.java 76 public native InetAddress inet_pton(int family, String address); method in class:Posix
  /bionic/libc/netbsd/
gethnamaddr.c 675 if (inet_pton(af, name,
709 if (inet_pton(af, name,
936 if (inet_pton(AF_INET6, p, (char *)(void *)rs->host_addr) > 0) {
939 } else if (inet_pton(AF_INET, p, (char *)(void *)rs->host_addr) > 0) {
    [all...]
  /external/ipsec-tools/src/racoon/
cfparse.y 669 if (inet_pton(AF_INET, $2->v,
680 if (inet_pton(AF_INET, $2->v,
947 if (inet_pton(AF_INET, $1->v,
968 if (inet_pton(AF_INET, $1->v,
989 if (inet_pton(AF_INET, $1->v, &network.addr4) != 1)
    [all...]
  /libcore/luni/src/main/java/java/net/
InetAddress.java 254 // If inet_pton(3) can't parse it, it must have been a deprecated format.
255 // We need to return inet_pton(3)'s result to ensure that numbers assumed to be octal
256 // by getaddrinfo(3) are reinterpreted by inet_pton(3) as decimal.
257 return Libcore.os.inet_pton(AF_INET, address);
    [all...]
  /system/netd/
DnsProxyListener.cpp 407 int result = inet_pton(addrFamily, addrStr, addr);
410 asprintf(&msg, "inet_pton(\"%s\") failed %s", addrStr, strerror(errno));
  /external/ppp/pppd/
ipv6cp.c 345 if (inet_pton(AF_INET6, arg, &addr) == 0 || !VALIDID(addr)) {
362 if (inet_pton(AF_INET6, comma, &addr) == 0 || !VALIDID(addr)) {
    [all...]
  /external/tcpdump/missing/
getaddrinfo.c 309 if (q && inet_pton(AF_INET6, q, &faith_prefix) == 1)
771 if (inet_pton(afd->a_af, hostname, pton) == 1) {
  /external/iproute2/lib/
utils.c 248 /* This uses a non-standard parsing (ie not inet_aton, or inet_pton)
298 if (inet_pton(AF_INET6, name, addr->data) <= 0)
  /external/mdnsresponder/mDNSPosix/
mDNSUNP.c 158 inet_pton(family, ipv6addr, addrptr);
NetMonitor.c     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_socket.py 471 if not hasattr(socket, 'inet_pton'):
472 return # No inet_pton() on this platform
473 from socket import inet_aton as f, inet_pton, AF_INET namespace
474 g = lambda a: inet_pton(AF_INET, a)
488 if not hasattr(socket, 'inet_pton'):
489 return # No inet_pton() on this platform
491 from socket import inet_pton, AF_INET6, has_ipv6 namespace
496 f = lambda a: inet_pton(AF_INET6, a)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_socket.py 471 if not hasattr(socket, 'inet_pton'):
472 return # No inet_pton() on this platform
473 from socket import inet_aton as f, inet_pton, AF_INET namespace
474 g = lambda a: inet_pton(AF_INET, a)
488 if not hasattr(socket, 'inet_pton'):
489 return # No inet_pton() on this platform
491 from socket import inet_pton, AF_INET6, has_ipv6 namespace
496 f = lambda a: inet_pton(AF_INET6, a)
    [all...]
  /external/dnsmasq/src/
cache.c 776 if (inet_pton(AF_INET, token, &addr) > 0)
782 else if (inet_pton(AF_INET6, token, &addr) > 0)
    [all...]
network.c 1053 else if (inet_pton(AF_INET6, saddr, &addr.in6.sin6_addr) > 0)
    [all...]
option.c     [all...]
  /external/wpa_supplicant_8/src/radius/
radius_server.c 1156 if (ipv6 && inet_pton(AF_INET6, buf, &addr6) <= 0) {
1157 if (inet_pton(AF_INET, buf, &addr) <= 0) {
    [all...]
  /external/checkpolicy/
checkpolicy.c 934 if (inet_pton(family, ans, p) < 1) {
policy_define.c     [all...]
  /external/clang/tools/libclang/
CIndexCodeCompletion.cpp 793 if (inet_pton(AF_INET, UDP_CODE_COMPLETION_LOGGER,
    [all...]
  /external/dhcpcd/
ipv6rs.c 117 if (inet_pton(AF_INET6, ALLROUTERS, &allrouters.sin6_addr.s6_addr) != 1)

Completed in 623 milliseconds

1 2 34 5