Lines Matching refs:hrtimer

100 struct hrtimer {  struct
103 enum hrtimer_restart (*function)(struct hrtimer *); argument
122 struct hrtimer timer; argument
189 struct hrtimer *running;
200 struct hrtimer *next_timer;
209 static inline void hrtimer_set_expires(struct hrtimer *timer, ktime_t time) in hrtimer_set_expires()
217 static inline void hrtimer_set_expires_range(struct hrtimer *timer, ktime_t time, ktime_t delta) in hrtimer_set_expires_range()
223 static inline void hrtimer_set_expires_range_ns(struct hrtimer *timer, ktime_t time, unsigned long … in hrtimer_set_expires_range_ns()
229 static inline void hrtimer_set_expires_tv64(struct hrtimer *timer, s64 tv64) in hrtimer_set_expires_tv64()
235 static inline void hrtimer_add_expires(struct hrtimer *timer, ktime_t time) in hrtimer_add_expires()
241 static inline void hrtimer_add_expires_ns(struct hrtimer *timer, u64 ns) in hrtimer_add_expires_ns()
247 static inline ktime_t hrtimer_get_expires(const struct hrtimer *timer) in hrtimer_get_expires()
252 static inline ktime_t hrtimer_get_softexpires(const struct hrtimer *timer) in hrtimer_get_softexpires()
257 static inline s64 hrtimer_get_expires_tv64(const struct hrtimer *timer) in hrtimer_get_expires_tv64()
261 static inline s64 hrtimer_get_softexpires_tv64(const struct hrtimer *timer) in hrtimer_get_softexpires_tv64()
266 static inline s64 hrtimer_get_expires_ns(const struct hrtimer *timer) in hrtimer_get_expires_ns()
271 static inline ktime_t hrtimer_expires_remaining(const struct hrtimer *timer) in hrtimer_expires_remaining()
276 static inline ktime_t hrtimer_cb_get_time(struct hrtimer *timer) in hrtimer_cb_get_time()
286 static inline int hrtimer_is_hres_active(struct hrtimer *timer) in hrtimer_is_hres_active()
317 static inline int hrtimer_is_hres_active(struct hrtimer *timer) in hrtimer_is_hres_active()
327 __hrtimer_expires_remaining_adjusted(const struct hrtimer *timer, ktime_t now) in __hrtimer_expires_remaining_adjusted()
341 hrtimer_expires_remaining_adjusted(const struct hrtimer *timer) in hrtimer_expires_remaining_adjusted()
361 extern void hrtimer_init(struct hrtimer *timer, clockid_t which_clock,
365 extern void hrtimer_init_on_stack(struct hrtimer *timer, clockid_t which_clock,
368 extern void destroy_hrtimer_on_stack(struct hrtimer *timer);
370 static inline void hrtimer_init_on_stack(struct hrtimer *timer, in hrtimer_init_on_stack()
376 static inline void destroy_hrtimer_on_stack(struct hrtimer *timer) { } in destroy_hrtimer_on_stack()
380 extern void hrtimer_start_range_ns(struct hrtimer *timer, ktime_t tim,
390 static inline void hrtimer_start(struct hrtimer *timer, ktime_t tim, in hrtimer_start()
396 extern int hrtimer_cancel(struct hrtimer *timer);
397 extern int hrtimer_try_to_cancel(struct hrtimer *timer);
399 static inline void hrtimer_start_expires(struct hrtimer *timer, in hrtimer_start_expires()
410 static inline void hrtimer_restart(struct hrtimer *timer) in hrtimer_restart()
416 extern ktime_t __hrtimer_get_remaining(const struct hrtimer *timer, bool adjust);
418 static inline ktime_t hrtimer_get_remaining(const struct hrtimer *timer) in hrtimer_get_remaining()
425 extern bool hrtimer_active(const struct hrtimer *timer);
430 static inline int hrtimer_is_queued(struct hrtimer *timer) in hrtimer_is_queued()
439 static inline int hrtimer_callback_running(struct hrtimer *timer) in hrtimer_callback_running()
446 hrtimer_forward(struct hrtimer *timer, ktime_t now, ktime_t interval);
464 static inline u64 hrtimer_forward_now(struct hrtimer *timer, in hrtimer_forward_now()