Lines Matching refs:ts64
87 struct timespec64 ts64; in do_settimeofday() local
89 ts64 = timespec_to_timespec64(*ts); in do_settimeofday()
90 return do_settimeofday64(&ts64); in do_settimeofday()
95 struct timespec64 ts64; in __getnstimeofday() local
96 int ret = __getnstimeofday64(&ts64); in __getnstimeofday()
98 *ts = timespec64_to_timespec(ts64); in __getnstimeofday()
104 struct timespec64 ts64; in getnstimeofday() local
106 getnstimeofday64(&ts64); in getnstimeofday()
107 *ts = timespec64_to_timespec(ts64); in getnstimeofday()
112 struct timespec64 ts64; in ktime_get_ts() local
114 ktime_get_ts64(&ts64); in ktime_get_ts()
115 *ts = timespec64_to_timespec(ts64); in ktime_get_ts()
120 struct timespec64 ts64; in ktime_get_real_ts() local
122 getnstimeofday64(&ts64); in ktime_get_real_ts()
123 *ts = timespec64_to_timespec(ts64); in ktime_get_real_ts()
128 struct timespec64 ts64; in getrawmonotonic() local
130 getrawmonotonic64(&ts64); in getrawmonotonic()
131 *ts = timespec64_to_timespec(ts64); in getrawmonotonic()
141 struct timespec64 ts64; in getboottime() local
143 getboottime64(&ts64); in getboottime()
144 *ts = timespec64_to_timespec(ts64); in getboottime()