Lines Matching defs:c
87 #define callout_active(c) ((c)->c_flags & CALLOUT_ACTIVE) argument
88 #define callout_deactivate(c) ((c)->c_flags &= ~CALLOUT_ACTIVE) argument
89 #define callout_drain(c) _callout_stop_safe(c, CS_DRAIN, NULL) argument
92 #define callout_init_mtx(c, mtx, flags) \ argument
95 #define callout_init_rm(c, rm, flags) \ argument
98 #define callout_init_rw(c, rw, flags) \ argument
101 #define callout_pending(c) ((c)->c_iflags & CALLOUT_PENDING) argument
104 #define callout_reset_sbt(c, sbt, pr, fn, arg, flags) \ argument
106 #define callout_reset_sbt_curcpu(c, sbt, pr, fn, arg, flags) \ argument
109 #define callout_reset_on(c, to_ticks, fn, arg, cpu) \ argument
112 #define callout_reset(c, on_tick, fn, arg) \ argument
114 #define callout_reset_curcpu(c, on_tick, fn, arg) \ argument
116 #define callout_schedule_sbt_on(c, sbt, pr, cpu, flags) \ argument
119 #define callout_schedule_sbt(c, sbt, pr, flags) \ argument
121 #define callout_schedule_sbt_curcpu(c, sbt, pr, flags) \ argument
125 #define callout_schedule_curcpu(c, on_tick) \ argument
127 #define callout_stop(c) _callout_stop_safe(c, 0, NULL) argument
130 #define callout_async_drain(c, d) \ argument