Home
last modified time | relevance | path

Searched refs:host_ts (Results 1 – 1 of 1) sorted by relevance

/openbmc/qemu/linux-user/
H A Dsyscall.c1194 static inline abi_long target_to_host_timespec(struct timespec *host_ts, in target_to_host_timespec() argument
1202 __get_user(host_ts->tv_sec, &target_ts->tv_sec); in target_to_host_timespec()
1203 __get_user(host_ts->tv_nsec, &target_ts->tv_nsec); in target_to_host_timespec()
1220 static inline abi_long target_to_host_timespec64(struct timespec *host_ts, in target_to_host_timespec64() argument
1228 __get_user(host_ts->tv_sec, &target_ts->tv_sec); in target_to_host_timespec64()
1229 __get_user(host_ts->tv_nsec, &target_ts->tv_nsec); in target_to_host_timespec64()
1231 host_ts->tv_nsec = (long)(abi_long)host_ts->tv_nsec; in target_to_host_timespec64()
1238 struct timespec *host_ts) in host_to_target_timespec() argument
1245 __put_user(host_ts->tv_sec, &target_ts->tv_sec); in host_to_target_timespec()
1246 __put_user(host_ts->tv_nsec, &target_ts->tv_nsec); in host_to_target_timespec()
[all …]