Lines Matching refs:host_stx

7650 static inline abi_long host_to_target_statx(struct target_statx *host_stx,  in host_to_target_statx()  argument
7660 __put_user(host_stx->stx_mask, &target_stx->stx_mask); in host_to_target_statx()
7661 __put_user(host_stx->stx_blksize, &target_stx->stx_blksize); in host_to_target_statx()
7662 __put_user(host_stx->stx_attributes, &target_stx->stx_attributes); in host_to_target_statx()
7663 __put_user(host_stx->stx_nlink, &target_stx->stx_nlink); in host_to_target_statx()
7664 __put_user(host_stx->stx_uid, &target_stx->stx_uid); in host_to_target_statx()
7665 __put_user(host_stx->stx_gid, &target_stx->stx_gid); in host_to_target_statx()
7666 __put_user(host_stx->stx_mode, &target_stx->stx_mode); in host_to_target_statx()
7667 __put_user(host_stx->stx_ino, &target_stx->stx_ino); in host_to_target_statx()
7668 __put_user(host_stx->stx_size, &target_stx->stx_size); in host_to_target_statx()
7669 __put_user(host_stx->stx_blocks, &target_stx->stx_blocks); in host_to_target_statx()
7670 __put_user(host_stx->stx_attributes_mask, &target_stx->stx_attributes_mask); in host_to_target_statx()
7671 __put_user(host_stx->stx_atime.tv_sec, &target_stx->stx_atime.tv_sec); in host_to_target_statx()
7672 __put_user(host_stx->stx_atime.tv_nsec, &target_stx->stx_atime.tv_nsec); in host_to_target_statx()
7673 __put_user(host_stx->stx_btime.tv_sec, &target_stx->stx_btime.tv_sec); in host_to_target_statx()
7674 __put_user(host_stx->stx_btime.tv_nsec, &target_stx->stx_btime.tv_nsec); in host_to_target_statx()
7675 __put_user(host_stx->stx_ctime.tv_sec, &target_stx->stx_ctime.tv_sec); in host_to_target_statx()
7676 __put_user(host_stx->stx_ctime.tv_nsec, &target_stx->stx_ctime.tv_nsec); in host_to_target_statx()
7677 __put_user(host_stx->stx_mtime.tv_sec, &target_stx->stx_mtime.tv_sec); in host_to_target_statx()
7678 __put_user(host_stx->stx_mtime.tv_nsec, &target_stx->stx_mtime.tv_nsec); in host_to_target_statx()
7679 __put_user(host_stx->stx_rdev_major, &target_stx->stx_rdev_major); in host_to_target_statx()
7680 __put_user(host_stx->stx_rdev_minor, &target_stx->stx_rdev_minor); in host_to_target_statx()
7681 __put_user(host_stx->stx_dev_major, &target_stx->stx_dev_major); in host_to_target_statx()
7682 __put_user(host_stx->stx_dev_minor, &target_stx->stx_dev_minor); in host_to_target_statx()
11642 struct target_statx host_stx; in _syscall2() local
11645 ret = get_errno(sys_statx(dirfd, p, flags, mask, &host_stx)); in _syscall2()
11647 if (host_to_target_statx(&host_stx, arg5) != 0) { in _syscall2()