Lines Matching refs:timer
57 print_timer(struct seq_file *m, struct hrtimer *taddr, struct hrtimer *timer, in print_timer() argument
66 print_name_offset(m, timer->function); in print_timer()
67 SEQ_printf(m, ", S:%02lx", timer->state); in print_timer()
70 print_name_offset(m, timer->start_site); in print_timer()
71 memcpy(tmp, timer->start_comm, TASK_COMM_LEN); in print_timer()
73 SEQ_printf(m, ", %s/%d", tmp, timer->start_pid); in print_timer()
77 (unsigned long long)ktime_to_ns(hrtimer_get_softexpires(timer)), in print_timer()
78 (unsigned long long)ktime_to_ns(hrtimer_get_expires(timer)), in print_timer()
79 (long long)(ktime_to_ns(hrtimer_get_softexpires(timer)) - now), in print_timer()
80 (long long)(ktime_to_ns(hrtimer_get_expires(timer)) - now)); in print_timer()
87 struct hrtimer *timer, tmp; in print_active_timers() local
108 timer = container_of(curr, struct hrtimer, node); in print_active_timers()
109 tmp = *timer; in print_active_timers()
112 print_timer(m, timer, &tmp, i, now); in print_active_timers()