Lines Matching refs:ts64
14 struct timespec64 ts64; in current_kernel_time() local
16 ktime_get_coarse_real_ts64(&ts64); in current_kernel_time()
18 return timespec64_to_timespec(ts64); in current_kernel_time()
26 struct timespec64 ts64; in do_settimeofday() local
28 ts64 = timespec_to_timespec64(*ts); in do_settimeofday()
29 return do_settimeofday64(&ts64); in do_settimeofday()
34 struct timespec64 ts64; in getnstimeofday() local
36 ktime_get_real_ts64(&ts64); in getnstimeofday()
37 *ts = timespec64_to_timespec(ts64); in getnstimeofday()
42 struct timespec64 ts64; in ktime_get_ts() local
44 ktime_get_ts64(&ts64); in ktime_get_ts()
45 *ts = timespec64_to_timespec(ts64); in ktime_get_ts()
50 struct timespec64 ts64; in ktime_get_real_ts() local
52 ktime_get_real_ts64(&ts64); in ktime_get_real_ts()
53 *ts = timespec64_to_timespec(ts64); in ktime_get_real_ts()
58 struct timespec64 ts64; in getrawmonotonic() local
60 ktime_get_raw_ts64(&ts64); in getrawmonotonic()
61 *ts = timespec64_to_timespec(ts64); in getrawmonotonic()
66 struct timespec64 ts64; in get_monotonic_coarse() local
68 ktime_get_coarse_ts64(&ts64); in get_monotonic_coarse()
70 return timespec64_to_timespec(ts64); in get_monotonic_coarse()
75 struct timespec64 ts64; in getboottime() local
77 getboottime64(&ts64); in getboottime()
78 *ts = timespec64_to_timespec(ts64); in getboottime()