Home | History | Annotate | Download | only in libevent

Lines Matching refs:event_set

64   structure and call event_set() to initialize the members of the structure.
332 to event_set as the argument to callback.
472 #define evtimer_set(ev, cb, arg) event_set(ev, -1, 0, cb, arg)
500 #define timeout_set(ev, cb, arg) event_set(ev, -1, 0, cb, arg)
515 event_set(ev, x, EV_SIGNAL|EV_PERSIST, cb, arg)
523 The function event_set() prepares the event structure ev to be used in
546 void event_set(struct event *, int, short, void (*)(int, short, void *), void *);
551 The function event_once() is similar to event_set(). However, it schedules
563 @see event_set()
573 The function event_base_once() is similar to event_set(). However, it
597 event specified in event_set() occurs or in at least the time specified in
600 ev argument must be already initialized by event_set() and may not be used
601 in calls to event_set() until it has timed out or been removed with
605 @param ev an event struct initialized via event_set()
609 @see event_del(), event_set()