Lines Matching defs:handler
150 /* call TCP timer handler */
183 sys_timeout_abs(u32_t abs_time, sys_timeout_handler handler, void *arg, const char *handler_name)
185 sys_timeout_abs(u32_t abs_time, sys_timeout_handler handler, void *arg)
197 timeout->h = handler;
203 LWIP_DEBUGF(TIMERS_DEBUG, ("sys_timeout: %p abs_time=%"U32_F" handler=%s arg=%p\n",
226 * Timer callback function that calls cyclic->handler() and reschedules itself.
243 cyclic->handler();
256 /* correct cyclic interval with handler execution delay and sys_check_timeouts jitter */
284 * @param handler callback function to call when msecs have elapsed
289 sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char *handler_name)
292 sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg)
304 sys_timeout_abs(next_timeout_time, handler, arg, handler_name);
306 sys_timeout_abs(next_timeout_time, handler, arg);
315 * @param handler callback function that would be called by the timeout
316 * @param arg callback argument that would be passed to handler
319 sys_untimeout(sys_timeout_handler handler, void *arg)
330 if ((t->h == handler) && (t->arg == arg)) {
349 * handler functions when timeouts expire.
365 sys_timeout_handler handler;
381 handler = tmptimeout->h;
385 if (handler != NULL) {
391 if (handler != NULL) {
392 handler(arg);