Searched refs:dsarg (Results 1 – 2 of 2) sorted by relevance
/openbmc/qemu/bsd-user/ |
H A D | bsd-mem.h | 313 struct shmid_ds dsarg; in do_bsd_shmctl() local 320 if (target_to_host_shmid_ds(&dsarg, buff)) { in do_bsd_shmctl() 323 ret = get_errno(shmctl(shmid, cmd, &dsarg)); in do_bsd_shmctl() 324 if (host_to_target_shmid_ds(buff, &dsarg)) { in do_bsd_shmctl() 330 if (target_to_host_shmid_ds(&dsarg, buff)) { in do_bsd_shmctl() 333 ret = get_errno(shmctl(shmid, cmd, &dsarg)); in do_bsd_shmctl()
|
/openbmc/qemu/linux-user/ |
H A D | syscall.c | 3978 struct semid_ds dsarg; in do_semctl() local 4015 err = target_to_host_semid_ds(&dsarg, target_su.buf); in do_semctl() 4018 arg.buf = &dsarg; in do_semctl() 4020 err = host_to_target_semid_ds(target_su.buf, &dsarg); in do_semctl() 4232 struct msqid_ds dsarg; in do_msgctl() local 4242 if (target_to_host_msqid_ds(&dsarg,ptr)) in do_msgctl() 4244 ret = get_errno(msgctl(msgid, cmd, &dsarg)); in do_msgctl() 4245 if (host_to_target_msqid_ds(ptr,&dsarg)) in do_msgctl() 4464 struct shmid_ds dsarg; in do_shmctl() local 4475 if (target_to_host_shmid_ds(&dsarg, buf)) in do_shmctl() [all …]
|