Lines Matching refs:flags
92 #define callout_init_mtx(c, mtx, flags) \ argument
94 NULL, (flags))
95 #define callout_init_rm(c, rm, flags) \ argument
97 NULL, (flags))
98 #define callout_init_rw(c, rw, flags) \ argument
100 NULL, (flags))
104 #define callout_reset_sbt_on(c, sbt, pr, fn, args, cpu, flags) \ argument
105 callout_reset_tick_on((c), (sbt)/tick_sbt, (fn), (args), (cpu), (flags))
106 #define callout_reset_sbt(c, sbt, pr, fn, arg, flags) \ argument
107 callout_reset_sbt_on((c), (sbt), (pr), (fn), (arg), -1, (flags))
108 #define callout_reset_sbt_curcpu(c, sbt, pr, fn, arg, flags) \ argument
110 (flags))
118 #define callout_schedule_sbt_on(c, sbt, pr, cpu, flags) \ argument
120 (cpu), (flags))
121 #define callout_schedule_sbt(c, sbt, pr, flags) \ argument
122 callout_schedule_sbt_on((c), (sbt), (pr), -1, (flags))
123 #define callout_schedule_sbt_curcpu(c, sbt, pr, flags) \ argument
124 callout_schedule_sbt_on((c), (sbt), (pr), PCPU_GET(cpuid), (flags))
134 void callout_when(sbintime_t sbt, sbintime_t precision, int flags,