Lines Matching defs:handler
161 sys_timeout_handler handler,
171 if (handler == NULL) {
181 timeout->handler = handler;
217 t->handler(t->args);
255 sys_timeout_handler handler = t->handler;
259 handler(args);
392 struct timer_handler *handler = (struct timer_handler *)args;
394 handler->handler();
429 sys_untimeout(sys_timeout_handler handler, void *arg)
437 if ((t->handler == handler) && (t->args == arg)) {
457 sys_timeout(u32_t msecs, sys_timeout_handler handler, void *arg)
459 return sys_timeout_reg(msecs, handler, arg,