Lines Matching refs:ts

13 extern int do_settimeofday64(const struct timespec64 *ts);
29 extern void getrawmonotonic64(struct timespec64 *ts);
30 extern void ktime_get_ts64(struct timespec64 *ts);
36 extern void getboottime64(struct timespec64 *ts);
42 static inline int do_settimeofday(const struct timespec *ts) in do_settimeofday() argument
44 return do_settimeofday64(ts); in do_settimeofday()
47 static inline int __getnstimeofday(struct timespec *ts) in __getnstimeofday() argument
49 return __getnstimeofday64(ts); in __getnstimeofday()
52 static inline void getnstimeofday(struct timespec *ts) in getnstimeofday() argument
54 getnstimeofday64(ts); in getnstimeofday()
57 static inline void ktime_get_ts(struct timespec *ts) in ktime_get_ts() argument
59 ktime_get_ts64(ts); in ktime_get_ts()
62 static inline void ktime_get_real_ts(struct timespec *ts) in ktime_get_real_ts() argument
64 getnstimeofday64(ts); in ktime_get_real_ts()
67 static inline void getrawmonotonic(struct timespec *ts) in getrawmonotonic() argument
69 getrawmonotonic64(ts); in getrawmonotonic()
77 static inline void getboottime(struct timespec *ts) in getboottime() argument
79 return getboottime64(ts); in getboottime()
85 static inline int do_settimeofday(const struct timespec *ts) in do_settimeofday() argument
89 ts64 = timespec_to_timespec64(*ts); in do_settimeofday()
93 static inline int __getnstimeofday(struct timespec *ts) in __getnstimeofday() argument
98 *ts = timespec64_to_timespec(ts64); in __getnstimeofday()
102 static inline void getnstimeofday(struct timespec *ts) in getnstimeofday() argument
107 *ts = timespec64_to_timespec(ts64); in getnstimeofday()
110 static inline void ktime_get_ts(struct timespec *ts) in ktime_get_ts() argument
115 *ts = timespec64_to_timespec(ts64); in ktime_get_ts()
118 static inline void ktime_get_real_ts(struct timespec *ts) in ktime_get_real_ts() argument
123 *ts = timespec64_to_timespec(ts64); in ktime_get_real_ts()
126 static inline void getrawmonotonic(struct timespec *ts) in getrawmonotonic() argument
131 *ts = timespec64_to_timespec(ts64); in getrawmonotonic()
139 static inline void getboottime(struct timespec *ts) in getboottime() argument
144 *ts = timespec64_to_timespec(ts64); in getboottime()
148 #define do_posix_clock_monotonic_gettime(ts) ktime_get_ts(ts) argument
149 #define ktime_get_real_ts64(ts) getnstimeofday64(ts) argument
233 static inline void get_monotonic_boottime(struct timespec *ts) in get_monotonic_boottime() argument
235 *ts = ktime_to_timespec(ktime_get_boottime()); in get_monotonic_boottime()
238 static inline void get_monotonic_boottime64(struct timespec64 *ts) in get_monotonic_boottime64() argument
240 *ts = ktime_to_timespec64(ktime_get_boottime()); in get_monotonic_boottime64()
243 static inline void timekeeping_clocktai(struct timespec *ts) in timekeeping_clocktai() argument
245 *ts = ktime_to_timespec(ktime_get_clocktai()); in timekeeping_clocktai()
267 extern void read_persistent_clock(struct timespec *ts);
268 extern void read_persistent_clock64(struct timespec64 *ts);
269 extern void read_boot_clock(struct timespec *ts);
270 extern void read_boot_clock64(struct timespec64 *ts);