Home | History | Annotate | Download | only in wdogctl

Lines Matching defs:period

86 	u_int period = WDOG_PERIOD_DEFAULT;
123 period = (unsigned int)tmp;
161 enable_ext(argv[0], period);
164 enable_kernel(argv[0], period);
168 enable_user(argv[0], period, command == CMD_USER_TICKLE);
175 prep_wmode(struct wdog_mode *wp, int mode, const char *name, u_int period)
182 wp->wm_period = period;
188 enable_kernel(const char *name, u_int period)
193 prep_wmode(&wm, WDOG_MODE_KTICKLE, name, period);
206 enable_ext(const char *name, u_int period)
211 prep_wmode(&wm, WDOG_MODE_ETICKLE, name, period);
228 enable_user(const char *name, u_int period, int cancel_on_close)
237 period);
266 * tickling the timer, then waiting 1/2 the period before
417 printf("\t%s, %u second period", cp, wm.wm_period);