Lines Matching refs:ts64
94 struct timespec64 ts64; in do_settimeofday() local
96 ts64 = timespec_to_timespec64(*ts); in do_settimeofday()
97 return do_settimeofday64(&ts64); in do_settimeofday()
102 struct timespec64 ts64; in __getnstimeofday() local
103 int ret = __getnstimeofday64(&ts64); in __getnstimeofday()
105 *ts = timespec64_to_timespec(ts64); in __getnstimeofday()
111 struct timespec64 ts64; in getnstimeofday() local
113 getnstimeofday64(&ts64); in getnstimeofday()
114 *ts = timespec64_to_timespec(ts64); in getnstimeofday()
119 struct timespec64 ts64; in ktime_get_ts() local
121 ktime_get_ts64(&ts64); in ktime_get_ts()
122 *ts = timespec64_to_timespec(ts64); in ktime_get_ts()
127 struct timespec64 ts64; in ktime_get_real_ts() local
129 getnstimeofday64(&ts64); in ktime_get_real_ts()
130 *ts = timespec64_to_timespec(ts64); in ktime_get_real_ts()
135 struct timespec64 ts64; in getrawmonotonic() local
137 getrawmonotonic64(&ts64); in getrawmonotonic()
138 *ts = timespec64_to_timespec(ts64); in getrawmonotonic()
148 struct timespec64 ts64; in getboottime() local
150 getboottime64(&ts64); in getboottime()
151 *ts = timespec64_to_timespec(ts64); in getboottime()