Lines Matching refs:handler
83 /* call TCP timer handler */
258 * @param handler callback function to call when msecs have elapsed
263 sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char* handler_name)
266 sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg)
277 timeout->h = handler;
282 LWIP_DEBUGF(TIMERS_DEBUG, ("sys_timeout: %p msecs=%"U32_F" handler=%s arg=%p\n",
315 * calling 'handler' in the list of timeouts.
317 * @param handler callback function that would be called by the timeout
318 * @param arg callback argument that would be passed to handler
321 sys_untimeout(sys_timeout_handler handler, void *arg)
330 if ((t->h == handler) && (t->arg == arg)) {
353 * handler functions when timeouts expire.
363 sys_timeout_handler handler;
384 handler = tmptimeout->h;
387 if (handler != NULL) {
393 if (handler != NULL) {
394 handler(arg);
427 sys_timeout_handler handler;
442 could be fetched. We should now call the timeout handler and
446 handler = tmptimeout->h;
449 if (handler != NULL) {
455 if (handler != NULL) {
457 timeout handler function. */
459 handler(arg);