Searched refs:host_ip (Results 1 – 9 of 9) 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 | 83 [Arguments] ${host_ip} 86 # host_ip The host name or IP of the host to ping. 88 ${ping_rsp}= Host Ping ${host_ip} 90 # ... msg=${host_ip} is not pinging. 92 ... msg=${host_ip} is not pinging. 96 [Arguments] ${host_ip} 99 # host_ip The host name or IP of the host to ping. 101 ${ping_rsp}= Host Ping ${host_ip} 103 ... msg=${host_ip} is pinging. 107 [Arguments] ${host_ip} [all …]
|
| /openbmc/openbmc-test-automation/lib/ |
| H A D | gen_misc.py | 455 host_ip = get_first_host_addr(host) 467 return host_name, host_ip, host_short_name 469 return host_name, host_ip
|
| H A D | obmc_boot_test.py | 531 global host_ip 533 host_name, host_ip = gm.get_host_name_ip(host) 846 host_ip,
|
| /openbmc/qemu/include/hw/hyperv/ |
| H A D | hyperv-proto.h | 159 uint32_t host_ip; member
|
| H A D | hyperv.h | 116 uint32_t host_ip; member
|
| /openbmc/qemu/hw/hyperv/ |
| H A D | hyperv.c | 773 reset_dbg_session->host_ip = msg.u.connection_info.host_ip; in hyperv_hcall_reset_dbg_session() 778 reset_dbg_session->target_ip = msg.u.connection_info.host_ip; in hyperv_hcall_reset_dbg_session()
|
| /openbmc/qemu/linux-user/ |
| H A D | syscall.c | 3815 static inline abi_long target_to_host_ipc_perm(struct ipc_perm *host_ip, in target_to_host_ipc_perm() argument 3824 host_ip->__key = tswap32(target_ip->__key); in target_to_host_ipc_perm() 3825 host_ip->uid = tswap32(target_ip->uid); in target_to_host_ipc_perm() 3826 host_ip->gid = tswap32(target_ip->gid); in target_to_host_ipc_perm() 3827 host_ip->cuid = tswap32(target_ip->cuid); in target_to_host_ipc_perm() 3828 host_ip->cgid = tswap32(target_ip->cgid); in target_to_host_ipc_perm() 3830 host_ip->mode = tswap32(target_ip->mode); in target_to_host_ipc_perm() 3832 host_ip->mode = tswap16(target_ip->mode); in target_to_host_ipc_perm() 3835 host_ip->__seq = tswap32(target_ip->__seq); in target_to_host_ipc_perm() 3837 host_ip->__seq = tswap16(target_ip->__seq); in target_to_host_ipc_perm() [all …]
|