Lines Matching refs:timeout_handle
128 struct callout timeout_handle; member
174 static struct callout timeout_handle; variable
228 callout_reset (&timeout_handle, hz, ct_timeout, 0); in ct_timeout()
688 callout_init (&d->timeout_handle, 1); in ct_attach()
802 callout_stop (&d->timeout_handle); in ct_detach()
837 callout_drain(&d->timeout_handle); in ct_detach()
949 callout_stop (&d->timeout_handle); in ct_down()
1034 callout_reset (&d->timeout_handle, hz, ct_watchdog_timer, d); in ct_start()
1068 callout_reset (&d->timeout_handle, hz, ct_watchdog_timer, d); in ct_watchdog_timer()
2129 callout_reset (&d->timeout_handle, hz, ct_watchdog_timer, d); in ng_ct_connect()
2148 if (!callout_drain (&d->timeout_handle)) in ng_ct_disconnect()
2149 callout_stop (&d->timeout_handle); in ng_ct_disconnect()
2165 callout_init (&timeout_handle, 1); in ct_modevent()
2166 callout_reset (&timeout_handle, hz*5, ct_timeout, 0); in ct_modevent()
2176 if (!callout_drain (&timeout_handle)) in ct_modevent()
2177 callout_stop (&timeout_handle); in ct_modevent()