• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/include/trace/events/

Lines Matching refs:hrtimer

8 #include <linux/hrtimer.h>
125 * hrtimer_init - called when the hrtimer is initialized
126 * @timer: pointer to struct hrtimer
132 TP_PROTO(struct hrtimer *hrtimer, clockid_t clockid,
135 TP_ARGS(hrtimer, clockid, mode),
138 __field( void *, hrtimer )
144 __entry->hrtimer = hrtimer;
149 TP_printk("hrtimer=%p clockid=%s mode=%s", __entry->hrtimer,
157 * hrtimer_start - called when the hrtimer is started
158 * @timer: pointer to struct hrtimer
162 TP_PROTO(struct hrtimer *hrtimer),
164 TP_ARGS(hrtimer),
167 __field( void *, hrtimer )
174 __entry->hrtimer = hrtimer;
175 __entry->function = hrtimer->function;
176 __entry->expires = hrtimer_get_expires(hrtimer).tv64;
177 __entry->softexpires = hrtimer_get_softexpires(hrtimer).tv64;
180 TP_printk("hrtimer=%p function=%pf expires=%llu softexpires=%llu",
181 __entry->hrtimer, __entry->function,
189 * htimmer_expire_entry - called immediately before the hrtimer callback
190 * @timer: pointer to struct hrtimer
198 TP_PROTO(struct hrtimer *hrtimer, ktime_t *now),
200 TP_ARGS(hrtimer, now),
203 __field( void *, hrtimer )
209 __entry->hrtimer = hrtimer;
211 __entry->function = hrtimer->function;
214 TP_printk("hrtimer=%p function=%pf now=%llu", __entry->hrtimer, __entry->function,
220 TP_PROTO(struct hrtimer *hrtimer),
222 TP_ARGS(hrtimer),
225 __field( void *, hrtimer )
229 __entry->hrtimer = hrtimer;
232 TP_printk("hrtimer=%p", __entry->hrtimer)
236 * hrtimer_expire_exit - called immediately after the hrtimer callback returns
237 * @timer: pointer to struct hrtimer
244 TP_PROTO(struct hrtimer *hrtimer),
246 TP_ARGS(hrtimer)
250 * hrtimer_cancel - called when the hrtimer is canceled
251 * @hrtimer: pointer to struct hrtimer
255 TP_PROTO(struct hrtimer *hrtimer),
257 TP_ARGS(hrtimer)