HomeSort by relevance Sort by last modified time
    Searched defs:inet_pton (Results 1 - 8 of 8) sorted by null

  /external/tcpdump/missing/
inet_pton.c 39 /* $Id: inet_pton.c,v 1.6 2003/11/16 09:36:51 guy Exp $ */
43 "@(#) $Header: /tcpdump/master/tcpdump/missing/inet_pton.c,v 1.6 2003/11/16 09:36:51 guy Exp $";
51 inet_pton(int af, const char *src, void *dst) function
  /external/chromium_org/third_party/libjingle/source/talk/base/
nethelpers.cc 92 int inet_pton(int af, const char* src, void *dst) { function in namespace:talk_base
96 return ::inet_pton(af, src, dst);
  /bionic/libc/upstream-netbsd/libc/inet/
inet_pton.c 1 /* $NetBSD: inet_pton.c,v 1.8 2012/03/13 21:13:38 christos Exp $ */
23 static const char rcsid[] = "Id: inet_pton.c,v 1.5 2005/07/28 06:51:47 marka Exp";
25 __RCSID("$NetBSD: inet_pton.c,v 1.8 2012/03/13 21:13:38 christos Exp $");
47 __weak_alias(inet_pton,_inet_pton)
59 * inet_pton(af, src, dst)
70 inet_pton(int af, const char *src, void *dst) function
91 * when last arg is 1: inet_pton(). decimal dotted-quad only.
129 /* inet_pton() takes decimal only */
173 /* inet_pton() takes dotted-quad only. it does not take shorthand. */
  /libcore/luni/src/main/java/libcore/io/
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
ForwardingOs.java 82 public InetAddress inet_pton(int family, String address) { return os.inet_pton(family, address); } method in class:ForwardingOs
  /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...]

Completed in 293 milliseconds