Searched refs:host_ip (Results 1 – 11 of 11) sorted by relevance
/openbmc/qemu/bsd-user/ |
H A D | bsd-mem.c | 34 void target_to_host_ipc_perm__locked(struct ipc_perm *host_ip, in target_to_host_ipc_perm__locked() argument 37 __get_user(host_ip->cuid, &target_ip->cuid); in target_to_host_ipc_perm__locked() 38 __get_user(host_ip->cgid, &target_ip->cgid); in target_to_host_ipc_perm__locked() 39 __get_user(host_ip->uid, &target_ip->uid); in target_to_host_ipc_perm__locked() 40 __get_user(host_ip->gid, &target_ip->gid); in target_to_host_ipc_perm__locked() 41 __get_user(host_ip->mode, &target_ip->mode); in target_to_host_ipc_perm__locked() 42 __get_user(host_ip->seq, &target_ip->seq); in target_to_host_ipc_perm__locked() 43 __get_user(host_ip->key, &target_ip->key); in target_to_host_ipc_perm__locked() 71 struct ipc_perm *host_ip) in host_to_target_ipc_perm__locked() argument 73 __put_user(host_ip->cuid, &target_ip->cuid); in host_to_target_ipc_perm__locked() [all …]
|
H A D | qemu-bsd.h | 49 void target_to_host_ipc_perm__locked(struct ipc_perm *host_ip, 52 struct ipc_perm *host_ip);
|
/openbmc/openbmc-test-automation/ipmi/ |
H A D | test_get_bios_post_code.robot | 82 [Arguments] ${host_ip} 85 # host_ip The host name or IP of the host to ping. 87 ${ping_rsp}= Host Ping ${host_ip} 89 # ... msg=${host_ip} is not pinging. 91 ... msg=${host_ip} is not pinging. 95 [Arguments] ${host_ip} 98 # host_ip The host name or IP of the host to ping. 100 ${ping_rsp}= Host Ping ${host_ip} 102 ... msg=${host_ip} is pinging. 106 [Arguments] ${host_ip} [all …]
|
/openbmc/qemu/hw/hyperv/ |
H A D | syndbg.c | 31 char *host_ip; member 254 msg->u.connection_info.host_ip = in hv_syndbg_handler() 319 if (qemu_isdigit(syndbg->host_ip[0])) { in hv_syndbg_realize() 320 syndbg->servaddr.sin_addr.s_addr = inet_addr(syndbg->host_ip); in hv_syndbg_realize() 322 struct hostent *he = gethostbyname(syndbg->host_ip); in hv_syndbg_realize() 325 TYPE_HV_SYNDBG, syndbg->host_ip); in hv_syndbg_realize() 370 DEFINE_PROP_STRING("host_ip", HvSynDbg, host_ip),
|
H A D | hyperv.c | 772 reset_dbg_session->host_ip = msg.u.connection_info.host_ip; in hyperv_hcall_reset_dbg_session() 777 reset_dbg_session->target_ip = msg.u.connection_info.host_ip; in hyperv_hcall_reset_dbg_session()
|
/openbmc/linux/arch/m68k/emu/ |
H A D | nfeth.c | 189 char mac[ETH_ALEN], host_ip[32], local_ip[32]; in nfeth_probe() local 215 virt_to_phys(host_ip), sizeof(host_ip)); in nfeth_probe() 219 netdev_info(dev, KBUILD_MODNAME " addr:%s (%s) HWaddr:%pM\n", host_ip, in nfeth_probe()
|
/openbmc/openbmc-test-automation/lib/ |
H A D | gen_misc.py | 454 host_ip = socket.gethostbyname(host) 466 return host_name, host_ip, host_short_name 468 return host_name, host_ip
|
H A D | obmc_boot_test.py | 535 global host_ip 537 host_name, host_ip = gm.get_host_name_ip(host) 850 host_ip,
|
/openbmc/qemu/include/hw/hyperv/ |
H A D | hyperv-proto.h | 147 uint32_t host_ip; member
|
H A D | hyperv.h | 115 uint32_t host_ip; member
|
/openbmc/qemu/linux-user/ |
H A D | syscall.c | 3771 static inline abi_long target_to_host_ipc_perm(struct ipc_perm *host_ip, in target_to_host_ipc_perm() argument 3780 host_ip->__key = tswap32(target_ip->__key); in target_to_host_ipc_perm() 3781 host_ip->uid = tswap32(target_ip->uid); in target_to_host_ipc_perm() 3782 host_ip->gid = tswap32(target_ip->gid); in target_to_host_ipc_perm() 3783 host_ip->cuid = tswap32(target_ip->cuid); in target_to_host_ipc_perm() 3784 host_ip->cgid = tswap32(target_ip->cgid); in target_to_host_ipc_perm() 3786 host_ip->mode = tswap32(target_ip->mode); in target_to_host_ipc_perm() 3788 host_ip->mode = tswap16(target_ip->mode); in target_to_host_ipc_perm() 3791 host_ip->__seq = tswap32(target_ip->__seq); in target_to_host_ipc_perm() 3793 host_ip->__seq = tswap16(target_ip->__seq); in target_to_host_ipc_perm() [all …]
|