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/socket/
inet_ntop.cc 19 const char* inet_ntop(int af, const void* src, char* dst, socklen_t size) { function
72 inet_ntop(AF_INET, host_tuples + 6, dst + strlen(dst), INET_ADDRSTRLEN);
  /external/chromium_org/third_party/webrtc/base/
nethelpers.cc 92 const char* inet_ntop(int af, const void *src, char* dst, socklen_t size) { function in namespace:rtc
96 return ::inet_ntop(af, src, dst, size);
  /bionic/libc/upstream-openbsd/lib/libc/net/
inet_ntop.c 1 /* $OpenBSD: inet_ntop.c,v 1.10 2014/05/17 18:16:14 tedu Exp $ */
38 * inet_ntop(af, src, dst, size)
46 inet_ntop(int af, const void *src, char *dst, socklen_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
  /external/fio/os/windows/
posix.c 897 const char* inet_ntop(int af, const void *restrict src, 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 492 milliseconds