Searched refs:host_st (Results 1 – 3 of 3) sorted by relevance
/openbmc/qemu/bsd-user/freebsd/ |
H A D | os-stat.c | 27 struct freebsd11_stat *host_st) in h2t_freebsd11_stat() argument 35 __put_user(host_st->st_dev, &target_st->st_dev); in h2t_freebsd11_stat() 36 __put_user(host_st->st_ino, &target_st->st_ino); in h2t_freebsd11_stat() 37 __put_user(host_st->st_mode, &target_st->st_mode); in h2t_freebsd11_stat() 38 __put_user(host_st->st_nlink, &target_st->st_nlink); in h2t_freebsd11_stat() 39 __put_user(host_st->st_uid, &target_st->st_uid); in h2t_freebsd11_stat() 40 __put_user(host_st->st_gid, &target_st->st_gid); in h2t_freebsd11_stat() 41 __put_user(host_st->st_rdev, &target_st->st_rdev); in h2t_freebsd11_stat() 42 __put_user(host_st->st_atim.tv_sec, &target_st->st_atim.tv_sec); in h2t_freebsd11_stat() 43 __put_user(host_st->st_atim.tv_nsec, &target_st->st_atim.tv_nsec); in h2t_freebsd11_stat() [all …]
|
H A D | qemu-os.h | 37 struct freebsd11_stat *host_st); 39 struct freebsd11_stat *host_st); 46 struct stat *host_st);
|
/openbmc/qemu/linux-user/ |
H A D | syscall.c | 7620 struct stat *host_st) in host_to_target_stat64() argument 7629 __put_user(host_st->st_dev, &target_st->st_dev); in host_to_target_stat64() 7630 __put_user(host_st->st_ino, &target_st->st_ino); in host_to_target_stat64() 7632 __put_user(host_st->st_ino, &target_st->__st_ino); in host_to_target_stat64() 7634 __put_user(host_st->st_mode, &target_st->st_mode); in host_to_target_stat64() 7635 __put_user(host_st->st_nlink, &target_st->st_nlink); in host_to_target_stat64() 7636 __put_user(host_st->st_uid, &target_st->st_uid); in host_to_target_stat64() 7637 __put_user(host_st->st_gid, &target_st->st_gid); in host_to_target_stat64() 7638 __put_user(host_st->st_rdev, &target_st->st_rdev); in host_to_target_stat64() 7639 __put_user(host_st->st_size, &target_st->st_size); in host_to_target_stat64() [all …]
|