Home
last modified time | relevance | path

Searched refs:host_ip (Results 1 – 12 of 12) sorted by relevance

/external/tcpdump/
Dprint-msnlb.c46 uint32_t host_ip; member
61 ND_PRINT((ndo, " host IP: %s", ipaddr_string(ndo, &(hb->host_ip)))); in msnlb_print()
/external/tensorflow/tensorflow/python/distribute/cluster_resolver/
Dkubernetes_cluster_resolver_test.py35 def _get_mock_pod_item(name, phase, host_ip): argument
37 mock_status.configure_mock(phase=phase, host_ip=host_ip)
Dkubernetes_cluster_resolver.py151 '%s:%s' % (pod.status.host_ip, self._tf_server_port))
/external/autotest/client/site_tests/p2p_ServeFiles/
Dp2p_ServeFiles.py147 for host_ip in (ips[0], '127.0.0.1'):
148 ret = self._p2p_fetch(host_ip, port, 'file')
153 "the address %s." % host_ip)
/external/toybox/toys/pending/
Darp.c212 char ip[128], hw_addr[128], mask[12], dev[128], *host_ip = NULL, *buf; in arp_main() local
250 host_ip = xstrdup(toybuf); in arp_main()
261 || (toys.optargs[0] && strcmp(host_ip, ip))) { in arp_main()
298 free(host_ip); in arp_main()
/external/autotest/site_utils/lxc/
Dconfig.py311 host_ip = lxc_utils.get_host_ip()
316 new_host = host_ip
324 new_host = host_ip
/external/autotest/client/common_lib/cros/
Ddev_server.py810 host_ip = None
812 host_ip = bin_utils.get_ip_address(hostname)
813 if not host_ip:
817 if not host_ip:
823 if host_ip and restricted_subnets:
825 host_ip, restricted_subnets=restricted_subnets)
829 '%s:%d.', hostname, host_ip, subnet_ip,
841 host_ip, DEFAULT_SUBNET_MASKBIT, True), True)
878 host_ip = bin_utils.get_ip_address(hostname)
879 if host_ip:
[all …]
/external/python/cpython3/Lib/
Dssl.py265 def _ipaddress_match(ipname, host_ip): argument
273 return ip == host_ip
294 host_ip = _inet_paton(hostname)
297 host_ip = None
302 if host_ip is None and _dnsname_match(value, hostname):
306 if host_ip is not None and _ipaddress_match(value, host_ip):
/external/autotest/client/common_lib/
Dutils.py2502 def get_servers_in_same_subnet(host_ip, mask_bits, servers=None, argument
2527 if server_ip and is_in_same_subnet(server_ip, host_ip, mask_bits):
2544 host_ip = get_ip_address(hostname)
2545 if not host_ip:
2548 if is_in_same_subnet(subnet_ip, host_ip, mask_bits):
2565 host_ip = get_ip_address(hostname)
2566 if not host_ip:
2584 if (is_in_same_subnet(subnet_ip, host_ip, maskbit) and
/external/webrtc/webrtc/p2p/stunprober/
Dmain.cc78 LOG(LS_INFO) << "Host IP: " << stats.host_ip; in PrintStats()
Dstunprober.h94 std::string host_ip; member
Dstunprober.cc525 stats.host_ip = net->GetBestIP().ToString(); in GetStats()