/external/autotest/server/site_tests/servo_LabstationVerification/ |
D | servo_LabstationVerification.py | 152 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/ |
D | print-msnlb.c | 46 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/ |
D | kubernetes_cluster_resolver_test.py | 35 def _get_mock_pod_item(name, phase, host_ip): argument 37 mock_status.configure_mock(phase=phase, host_ip=host_ip)
|
D | kubernetes_cluster_resolver.py | 151 '%s:%s' % (pod.status.host_ip, self._tf_server_port))
|
/external/crosvm/tests/ |
D | plugin_net_config.c | 56 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/ |
D | arp.c | 212 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/ |
D | config.py | 311 host_ip = lxc_utils.get_host_ip() 316 new_host = host_ip 324 new_host = host_ip
|
/external/autotest/client/common_lib/cros/ |
D | dev_server.py | 805 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/ |
D | ssl.py | 359 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/ |
D | main.rs | 106 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()
|
D | linux.rs | 522 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/ |
D | main.cc | 78 LOG(LS_INFO) << "Host IP: " << stats.host_ip; in PrintStats()
|
D | stunprober.h | 94 std::string host_ip; member
|
D | stunprober.cc | 525 stats.host_ip = net->GetBestIP().ToString(); in GetStats()
|
/external/autotest/client/common_lib/ |
D | utils.py | 2596 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/ |
D | crosvm.h | 149 uint32_t host_ip; member
|
/external/crosvm/src/plugin/ |
D | mod.rs | 576 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/ |
D | README.md | 101 * no network (set with `--host_ip`, `--netmask`, and `--mac`)
|