Lines Matching refs:timeout_handle
125 struct callout timeout_handle; member
168 static struct callout timeout_handle; variable
253 callout_reset (&timeout_handle, hz, cp_timeout, 0); in cp_timeout()
476 callout_init (&d->timeout_handle, 1); in cp_attach()
588 callout_stop (&d->timeout_handle); in cp_detach()
630 callout_drain (&d->timeout_handle); in cp_detach()
744 callout_stop (&d->timeout_handle); in cp_down()
825 callout_reset (&d->timeout_handle, hz, cp_watchdog_timer, d); in cp_start()
858 callout_reset (&d->timeout_handle, hz, cp_watchdog_timer, d); in cp_watchdog_timer()
2185 callout_reset (&d->timeout_handle, hz, cp_watchdog_timer, d); in ng_cp_connect()
2207 if (!callout_drain (&d->timeout_handle)) in ng_cp_disconnect()
2208 callout_stop (&d->timeout_handle); in ng_cp_disconnect()
2225 callout_init (&timeout_handle, 1); in cp_modevent()
2226 callout_reset (&timeout_handle, hz*5, cp_timeout, 0); in cp_modevent()
2239 if (!callout_drain (&timeout_handle)) in cp_modevent()
2240 callout_stop (&timeout_handle); in cp_modevent()