Lines Matching refs:host_ip

3741 static inline abi_long target_to_host_ipc_perm(struct ipc_perm *host_ip,  in target_to_host_ipc_perm()  argument
3750 host_ip->__key = tswap32(target_ip->__key); in target_to_host_ipc_perm()
3751 host_ip->uid = tswap32(target_ip->uid); in target_to_host_ipc_perm()
3752 host_ip->gid = tswap32(target_ip->gid); in target_to_host_ipc_perm()
3753 host_ip->cuid = tswap32(target_ip->cuid); in target_to_host_ipc_perm()
3754 host_ip->cgid = tswap32(target_ip->cgid); in target_to_host_ipc_perm()
3756 host_ip->mode = tswap32(target_ip->mode); in target_to_host_ipc_perm()
3758 host_ip->mode = tswap16(target_ip->mode); in target_to_host_ipc_perm()
3761 host_ip->__seq = tswap32(target_ip->__seq); in target_to_host_ipc_perm()
3763 host_ip->__seq = tswap16(target_ip->__seq); in target_to_host_ipc_perm()
3770 struct ipc_perm *host_ip) in host_to_target_ipc_perm() argument
3778 target_ip->__key = tswap32(host_ip->__key); in host_to_target_ipc_perm()
3779 target_ip->uid = tswap32(host_ip->uid); in host_to_target_ipc_perm()
3780 target_ip->gid = tswap32(host_ip->gid); in host_to_target_ipc_perm()
3781 target_ip->cuid = tswap32(host_ip->cuid); in host_to_target_ipc_perm()
3782 target_ip->cgid = tswap32(host_ip->cgid); in host_to_target_ipc_perm()
3784 target_ip->mode = tswap32(host_ip->mode); in host_to_target_ipc_perm()
3786 target_ip->mode = tswap16(host_ip->mode); in host_to_target_ipc_perm()
3789 target_ip->__seq = tswap32(host_ip->__seq); in host_to_target_ipc_perm()
3791 target_ip->__seq = tswap16(host_ip->__seq); in host_to_target_ipc_perm()