Lines Matching defs:fn
96 #define callout_reset_sbt(c, sbt, pr, fn, arg, flags) \
97 callout_reset_sbt_on((c), (sbt), (pr), (fn), (arg), -1, (flags))
98 #define callout_reset_sbt_curcpu(c, sbt, pr, fn, arg, flags) \
99 callout_reset_sbt_on((c), (sbt), (pr), (fn), (arg), PCPU_GET(cpuid),\
101 #define callout_reset_on(c, to_ticks, fn, arg, cpu) \
102 callout_reset_sbt_on((c), tick_sbt * (to_ticks), 0, (fn), (arg), \
104 #define callout_reset(c, on_tick, fn, arg) \
105 callout_reset_on((c), (on_tick), (fn), (arg), -1)
106 #define callout_reset_curcpu(c, on_tick, fn, arg) \
107 callout_reset_on((c), (on_tick), (fn), (arg), PCPU_GET(cpuid))