Lines Matching refs:tmptimeout
361 struct sys_timeo *tmptimeout; in sys_check_timeouts() local
377 tmptimeout = next_timeout; in sys_check_timeouts()
378 if (tmptimeout && (tmptimeout->time <= diff)) { in sys_check_timeouts()
382 diff -= tmptimeout->time; in sys_check_timeouts()
383 next_timeout = tmptimeout->next; in sys_check_timeouts()
384 handler = tmptimeout->h; in sys_check_timeouts()
385 arg = tmptimeout->arg; in sys_check_timeouts()
389 tmptimeout->handler_name, arg)); in sys_check_timeouts()
392 memp_free(MEMP_SYS_TIMEOUT, tmptimeout); in sys_check_timeouts()
426 struct sys_timeo *tmptimeout; in sys_timeouts_mbox_fetch() local
444 tmptimeout = next_timeout; in sys_timeouts_mbox_fetch()
445 next_timeout = tmptimeout->next; in sys_timeouts_mbox_fetch()
446 handler = tmptimeout->h; in sys_timeouts_mbox_fetch()
447 arg = tmptimeout->arg; in sys_timeouts_mbox_fetch()
451 tmptimeout->handler_name, arg)); in sys_timeouts_mbox_fetch()
454 memp_free(MEMP_SYS_TIMEOUT, tmptimeout); in sys_timeouts_mbox_fetch()