/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/ |
D | inet.py | 50 return dns.ipv4.inet_aton(text) 52 return dns.ipv6.inet_aton(text) 83 junk = dns.ipv4.inet_aton(text) 87 junk = dns.ipv6.inet_aton(text) 100 first = ord(dns.ipv4.inet_aton(text)[0]) 104 first = ord(dns.ipv6.inet_aton(text)[0])
|
D | ipv4.py | 28 def inet_aton(text): function 32 return socket.inet_aton(text) 34 inet_aton = socket.inet_aton variable
|
D | reversename.py | 40 parts = list(dns.ipv6.inet_aton(text).encode('hex_codec')) 43 parts = ['%d' % ord(byte) for byte in dns.ipv4.inet_aton(text)] 60 return dns.ipv4.inet_ntoa(dns.ipv4.inet_aton(text)) 73 return dns.ipv6.inet_ntoa(dns.ipv6.inet_aton(text))
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/rdtypes/IN/ |
D | A.py | 32 junk = dns.ipv4.inet_aton(address) 46 file.write(dns.ipv4.inet_aton(self.address)) 55 sa = dns.ipv4.inet_aton(self.address) 56 oa = dns.ipv4.inet_aton(other.address)
|
D | WKS.py | 88 file.write(dns.ipv4.inet_aton(self.address)) 104 sa = dns.ipv4.inet_aton(self.address) 105 oa = dns.ipv4.inet_aton(other.address)
|
/external/libpcap/Win32/Src/ |
D | inet_pton.c | 54 int inet_aton(const char *cp, struct in_addr *addr); 63 return inet_aton (src, dst); in inet_pton()
|
D | inet_aton.c | 50 inet_aton(const char *cp, struct in_addr *addr) in inet_aton() function
|
/external/autotest/client/deps/lansim/src/py/ |
D | host.py | 15 socket.inet_aton('255.255.255.255'): tools.inet_hwton('FF:FF:FF:FF:FF:FF'), 40 self._bin_ip_addr = socket.inet_aton(ip_addr) 174 self._tcp_fwd_ports[port] = socket.inet_aton(dest_addr), dest_port 302 "ip.dst": socket.inet_aton(ip_addr), 325 dst = socket.inet_aton(ip_addr),
|
/external/autotest/client/cros/netprotos/ |
D | interface_host.py | 116 ip_addr_prefix = ord(socket.inet_aton(ip_addr)[0]) 125 socket.inet_aton(ip_addr) + 126 socket.inet_aton(self._interface_ip))
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/socksipy-branch/ |
D | socks.py | 210 ipaddr = socket.inet_aton(destaddr) 220 ipaddr = socket.inet_aton(socket.gethostbyname(destaddr)) 278 ipaddr = socket.inet_aton(destaddr) 285 ipaddr = socket.inet_aton(socket.gethostbyname(destaddr))
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/httplib2/python2/httplib2/ |
D | socks.py | 249 ipaddr = socket.inet_aton(destaddr) 259 ipaddr = socket.inet_aton(socket.gethostbyname(destaddr)) 317 ipaddr = socket.inet_aton(destaddr) 324 ipaddr = socket.inet_aton(socket.gethostbyname(destaddr))
|
/external/autotest/client/cros/ |
D | dhcp_test_base.py | 69 mask = struct.unpack('!I', socket.inet_aton(subnet_mask))[0] 70 subnet = mask & struct.unpack('!I', socket.inet_aton(ip_in_subnet))[0] 71 suffix = ~mask & struct.unpack('!I', socket.inet_aton(ip_suffix))[0]
|
D | dhcp_packet.py | 75 return socket.inet_aton(value) 85 return "".join([socket.inet_aton(addr) for addr in value]) 129 destination_address = socket.inet_aton(destination) 131 byte_string += socket.inet_aton(router) 280 return socket.inet_aton(value)
|
/external/fio/lib/ |
D | inet_aton.h | 6 int inet_aton(const char *cp, struct in_addr *inp);
|
D | inet_aton.c | 3 int inet_aton(const char *cp, struct in_addr *inp) in inet_aton() function
|
/external/tcpdump/missing/ |
D | inet_pton.c | 48 return inet_aton (src, dst); in inet_pton()
|
D | inet_aton.c | 49 inet_aton(const char *cp, struct in_addr *addr) in inet_aton() function
|
/external/fio/os/windows/ |
D | posix.h | 8 extern int inet_aton(const char *, struct in_addr *);
|
/external/wpa_supplicant_8/src/utils/ |
D | ip_addr.c | 39 if (inet_aton(txt, &addr->u.v4)) { in hostapd_parse_ip_addr()
|
/external/tcpdump/ |
D | Makefile.in | 322 missing/inet_aton.c \ 380 inet_aton.o: $(srcdir)/missing/inet_aton.c 381 $(CC) $(FULL_CFLAGS) -o $@ -c $(srcdir)/missing/inet_aton.c
|
/external/fio/ |
D | configure | 950 inet_aton="no" 958 return inet_aton(NULL, &in); 962 inet_aton="yes" 964 echo "inet_aton $inet_aton" 1489 if test "$inet_aton" = "yes" ; then
|
/external/autotest/client/tests/kvm/scripts/ |
D | multicast_guest.py | 27 mreq = struct.pack("4sl", socket.inet_aton(mcast),
|
/external/autotest/server/cros/ |
D | dnsname_mangler.py | 33 socket.inet_aton(hostname)
|
/external/dhcpcd-6.8.2/dbus/ |
D | dbus-dict.c | 148 if (strchr(data, '.') != NULL && inet_aton(data, &in) == 1) in append_config_value() 257 inet_aton(tok, &in) == 1) in append_config_array()
|
/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/ |
D | dnsproxy.py | 50 socket.inet_aton(hostname) 239 socket.inet_aton(ip)
|