Home
last modified time | relevance | path

Searched refs:handler (Results 1 – 5 of 5) sorted by relevance

/lib/liblwip/src/include/lwip/
Dtimers.h80 void sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char* handler_nam…
81 #define sys_timeout(msecs, handler, arg) sys_timeout_debug(msecs, handler, arg, #handler) argument
83 void sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg);
86 void sys_untimeout(sys_timeout_handler handler, void *arg);
Ddebug.h74 #define LWIP_ERROR(message, expression, handler) do { if (!(expression)) { \ argument
75 LWIP_PLATFORM_ASSERT(message); handler;}} while(0)
/lib/liblwip/src/core/
Dtimers.c263 sys_timeout_debug(u32_t msecs, sys_timeout_handler handler, void *arg, const char* handler_name) in sys_timeout_debug() argument
266 sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg) in sys_timeout_debug()
277 timeout->h = handler; in sys_timeout_debug()
321 sys_untimeout(sys_timeout_handler handler, void *arg) in sys_untimeout() argument
330 if ((t->h == handler) && (t->arg == arg)) { in sys_untimeout()
363 sys_timeout_handler handler; in sys_check_timeouts() local
384 handler = tmptimeout->h; in sys_check_timeouts()
387 if (handler != NULL) { in sys_check_timeouts()
393 if (handler != NULL) { in sys_check_timeouts()
394 handler(arg); in sys_check_timeouts()
[all …]
/sys/dev/x86/
Dsercons.c36 static IRQHandler handler; variable
61 handler.irq = irq; in Serial_LateInit()
62 handler.cb = &Serial_Interrupt; in Serial_LateInit()
63 handler.arg = NULL; in Serial_LateInit()
65 IRQ_Register(irq, &handler); in Serial_LateInit()
/lib/liblwip/doc/
Dsnmp_agent.txt99 or a timer signal handler depending on your runtime environment.