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

  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/syscalls/
inet_ntop.cc 20 const char* inet_ntop(int af, const void* src, char* dst, socklen_t size) { function
  /bionic/libc/upstream-netbsd/libc/inet/
inet_ntop.c 1 /* $NetBSD: inet_ntop.c,v 1.9 2012/03/20 17:08:13 matt Exp $ */
23 static const char rcsid[] = "Id: inet_ntop.c,v 1.5 2005/11/03 22:59:52 marka Exp";
25 __RCSID("$NetBSD: inet_ntop.c,v 1.9 2012/03/20 17:08:13 matt Exp $");
49 __weak_alias(inet_ntop,_inet_ntop)
61 * inet_ntop(af, src, dst, size)
69 inet_ntop(int af, const void *src, char *dst, socklen_t size) function
  /external/chromium_org/third_party/libjingle/source/talk/base/
nethelpers.cc 84 const char* inet_ntop(int af, const void *src, char* dst, socklen_t size) { function in namespace:talk_base
88 return ::inet_ntop(af, src, dst, size);
  /external/openssh/openbsd-compat/
inet_ntop.c 1 /* $OpenBSD: inet_ntop.c,v 1.7 2005/08/06 20:30:03 espie Exp $ */
19 /* OPENBSD ORIGINAL: lib/libc/net/inet_ntop.c */
52 * inet_ntop(af, src, dst, size)
60 inet_ntop(int af, const void *src, char *dst, size_t size) function
  /external/tcpdump/missing/
inet_ntop.c 39 /* $Id: inet_ntop.c,v 1.8 2005/02/09 02:25:46 guy Exp $ */
43 "@(#) $Header: /tcpdump/master/tcpdump/missing/inet_ntop.c,v 1.8 2005/02/09 02:25:46 guy Exp $";
206 inet_ntop(int af, const void *src, char *dst, size_t size) function
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_socket.py 507 if not hasattr(socket, 'inet_ntop'):
508 return # No inet_ntop() on this platform
509 from socket import inet_ntoa as f, inet_ntop, AF_INET namespace
510 g = lambda a: inet_ntop(AF_INET, a)
522 if not hasattr(socket, 'inet_ntop'):
523 return # No inet_ntop() on this platform
525 from socket import inet_ntop, AF_INET6, has_ipv6 namespace
530 f = lambda a: inet_ntop(AF_INET6, a)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_socket.py 507 if not hasattr(socket, 'inet_ntop'):
508 return # No inet_ntop() on this platform
509 from socket import inet_ntoa as f, inet_ntop, AF_INET namespace
510 g = lambda a: inet_ntop(AF_INET, a)
522 if not hasattr(socket, 'inet_ntop'):
523 return # No inet_ntop() on this platform
525 from socket import inet_ntop, AF_INET6, has_ipv6 namespace
530 f = lambda a: inet_ntop(AF_INET6, a)
    [all...]

Completed in 98 milliseconds