Home | History | Annotate | Download | only in event2

Lines Matching refs:cb

588   @param cb a function taking two arguments: an integer severity between
589 _EVENT_LOG_DEBUG and _EVENT_LOG_ERR, and a string. If cb is NULL,
595 void event_set_log_callback(event_log_cb cb);
616 void event_set_fatal_callback(event_fatal_cb cb);
754 #define evtimer_assign(ev, b, cb, arg) \
755 event_assign((ev), (b), -1, 0, (cb), (arg))
756 #define evtimer_new(b, cb, arg) event_new((b), -1, 0, (cb), (arg))
770 #define evsignal_assign(ev, b, x, cb, arg) \
771 event_assign((ev), (b), (x), EV_SIGNAL|EV_PERSIST, cb, (arg))
772 #define evsignal_new(b, x, cb, arg) \
773 event_new((b), (x), EV_SIGNAL|EV_PERSIST, (cb), (arg))