Searched refs:gethostbyaddr (Results 1 – 25 of 48) sorted by relevance
12
/external/python/cpython2/Mac/Demo/example1/ |
D | dnslookup-1.py | 45 value = socket.gethostbyaddr(str)[0]
|
/external/ppp/pppd/plugins/radius/ |
D | ip_util.c | 108 if ((hp = gethostbyaddr ((char *) &n_ipaddr, sizeof (struct in_addr), in rc_ip_hostname()
|
/external/python/cpython2/Mac/Demo/example2/ |
D | dnslookup-2.py | 74 value = socket.gethostbyaddr(str)[0]
|
/external/tcpdump/ |
D | addrtoname.c | 113 return gethostbyaddr(addr, len, type); in win32_gethostbyaddr() 131 #define gethostbyaddr win32_gethostbyaddr macro 255 hp = gethostbyaddr((char *)&addr, 4, AF_INET); in getname() 310 hp = gethostbyaddr((char *)&addr, sizeof(addr), AF_INET6); in getname6()
|
/external/python/cpython3/Modules/ |
D | getnameinfo.c | 183 hp = gethostbyaddr(addr, gni_afd->a_addrlen, gni_afd->a_af);
|
D | getaddrinfo.c | 503 hp = gethostbyaddr(addr, gai_afd->a_addrlen, AF_INET);
|
/external/python/cpython2/Modules/ |
D | getnameinfo.c | 183 hp = gethostbyaddr(addr, gni_afd->a_addrlen, gni_afd->a_af);
|
D | getaddrinfo.c | 503 hp = gethostbyaddr(addr, gai_afd->a_addrlen, AF_INET);
|
/external/openssh/openbsd-compat/ |
D | fake-rfc2553.c | 70 hp = gethostbyaddr((char *)&sin->sin_addr, in getnameinfo()
|
/external/libcups/cups/ |
D | http-addr.c | 406 host = gethostbyaddr((char *)&(addr->ipv6.sin6_addr), in httpAddrLookup() 410 host = gethostbyaddr((char *)&(addr->ipv4.sin_addr), in httpAddrLookup()
|
/external/iputils/ |
D | tracepath.c | 181 h = gethostbyaddr((char *) &sin->sin_addr, sizeof(sin->sin_addr), AF_INET); in recverr()
|
D | traceroute6.c | 914 if ((hp = gethostbyaddr((char *)&from->sin6_addr, in print()
|
D | ping.c | 1320 !(hp = gethostbyaddr((char *)&addr, 4, AF_INET))) in pr_addr()
|
D | rdisc.c | 704 phe = gethostbyaddr((char *)&addr.s_addr, 4, AF_INET); in pr_name()
|
D | ping6.c | 1825 hp = gethostbyaddr((__u8*)addr, sizeof(struct in6_addr), AF_INET6); in pr_addr()
|
/external/toolchain-utils/ |
D | file_lock_machine.py | 289 self._full_name = socket.gethostbyaddr(name)[0]
|
/external/mdnsresponder/mDNSPosix/ |
D | nss_ReadMe.txt | 42 functions gethostbyname, gethostbyname2 and gethostbyaddr, using the Name
|
/external/ltp/testcases/network/sockets/ |
D | ltpClient.c | 631 gethostbyaddr((void *)&rawReceiveAddr, length, in ltp_traceroute()
|
/external/python/cpython2/Lib/ |
D | socket.py | 141 hostname, aliases, ipaddrs = gethostbyaddr(name)
|
/external/python/cpython3/Lib/ |
D | socket.py | 756 hostname, aliases, ipaddrs = gethostbyaddr(name)
|
/external/python/cpython2/Doc/library/ |
D | socket.rst | 120 :func:`gethostbyaddr`. 281 hostname returned by :func:`gethostbyaddr` is checked, followed by aliases for the 324 .. function:: gethostbyaddr(ip_address) 331 domain name, use the function :func:`getfqdn`. :func:`gethostbyaddr` supports
|
/external/iptables/iptables/ |
D | nft-arp.c | 61 if ((host = gethostbyaddr((char *) addr, in addr_to_host()
|
/external/curl/m4/ |
D | curl-functions.m4 | 2232 dnl Verify if gethostbyaddr is available, prototyped, 2247 AC_MSG_CHECKING([if gethostbyaddr can be linked]) 2254 if(0 != gethostbyaddr(0, 0, 0)) 2266 AC_MSG_CHECKING([if gethostbyaddr is prototyped]) 2267 AC_EGREP_CPP([gethostbyaddr],[ 2281 AC_MSG_CHECKING([if gethostbyaddr is compilable]) 2288 if(0 != gethostbyaddr(0, 0, 0)) 2301 AC_MSG_CHECKING([if gethostbyaddr usage allowed]) 2311 AC_MSG_CHECKING([if gethostbyaddr might be used]) 2318 [Define to 1 if you have the gethostbyaddr function.])
|
/external/python/cpython3/Doc/library/ |
D | socket.rst | 241 C API, including :func:`gethostbyname_ex` and :func:`gethostbyaddr`. 749 hostname returned by :func:`gethostbyaddr` is checked, followed by aliases for the 791 .. function:: gethostbyaddr(ip_address) 798 domain name, use the function :func:`getfqdn`. :func:`gethostbyaddr` supports 801 .. audit-event:: socket.gethostbyaddr ip_address socket.gethostbyaddr
|
/external/iproute2/lib/ |
D | utils.c | 933 h_ent = gethostbyaddr(addr, len, af); in resolve_address()
|
12