Home
last modified time | relevance | path

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

/external/autotest/server/site_tests/servo_LabstationVerification/
Dservo_LabstationVerification.py152 host_ip = server_utils.get_ip_address(host.hostname)
153 if host_ip is None:
158 host_ip = host.hostname
161 host.run('ifconfig %s | grep %s' % (dev, host_ip))
167 logging.debug('ip %s not on dev %s', host_ip, dev)
/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/crosvm/tests/
Dplugin_net_config.c56 if (net_config.host_ip != htonl(expected_ip)) { in main()
58 inet_ntop(AF_INET, &net_config.host_ip, ip_addr, sizeof(ip_addr)); in main()
/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.py805 host_ip = None
807 host_ip = bin_utils.get_ip_address(hostname)
808 if not host_ip:
812 if not host_ip:
818 if host_ip and restricted_subnets:
820 host_ip, restricted_subnets=restricted_subnets)
824 '%s:%d.', hostname, host_ip, subnet_ip,
836 host_ip, DEFAULT_SUBNET_MASKBIT, True), True)
873 host_ip = bin_utils.get_ip_address(hostname)
874 if host_ip:
[all …]
/external/python/cpython3/Lib/
Dssl.py359 def _ipaddress_match(cert_ipaddress, host_ip): argument
368 return ip == host_ip
389 host_ip = _inet_paton(hostname)
392 host_ip = None
397 if host_ip is None and _dnsname_match(value, hostname):
401 if host_ip is not None and _ipaddress_match(value, host_ip):
/external/crosvm/src/
Dmain.rs106 host_ip: Option<net::Ipv4Addr>, field
148 host_ip: None, in default()
460 if cfg.host_ip.is_some() { in set_argument()
465 cfg.host_ip = in set_argument()
890 if cfg.host_ip.is_some() || cfg.netmask.is_some() || cfg.mac_address.is_some() { in run_vm()
891 if cfg.host_ip.is_none() { in run_vm()
Dlinux.rs522 host_ip: Ipv4Addr, in create_net_device()
529 virtio::vhost::Net::<Tap, vhost::Net<Tap>>::new(host_ip, netmask, mac_address, mem) in create_net_device()
534 virtio::Net::<Tap>::new(host_ip, netmask, mac_address).map_err(Error::NetDeviceNew)?; in create_net_device()
832 if let (Some(host_ip), Some(netmask), Some(mac_address)) = in create_virtio_devices()
833 (cfg.host_ip, cfg.netmask, cfg.mac_address) in create_virtio_devices()
835 devs.push(create_net_device(cfg, host_ip, netmask, mac_address, mem)?); in create_virtio_devices()
/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()
/external/autotest/client/common_lib/
Dutils.py2596 def get_servers_in_same_subnet(host_ip, mask_bits, servers=None, argument
2621 if server_ip and is_in_same_subnet(server_ip, host_ip, mask_bits):
2638 host_ip = get_ip_address(hostname)
2639 if not host_ip:
2642 if is_in_same_subnet(subnet_ip, host_ip, mask_bits):
2659 host_ip = get_ip_address(hostname)
2660 if not host_ip:
2678 if (is_in_same_subnet(subnet_ip, host_ip, maskbit) and
/external/crosvm/crosvm_plugin/
Dcrosvm.h149 uint32_t host_ip; member
/external/crosvm/src/plugin/
Dmod.rs576 if let Some(host_ip) = cfg.host_ip { in run_config()
580 tap.set_ip_addr(host_ip).map_err(Error::TapSetIp)?; in run_config()
/external/crosvm/
DREADME.md101 * no network (set with `--host_ip`, `--netmask`, and `--mac`)