Home | History | Annotate | Download | only in event2

Lines Matching full:event_new

86   event structure with event_new().  (You may also declare an event
229 * Generally, you can create events with event_new(), then make them
239 * event_assign() or event_new(), and are then neither active nor pending.
266 * @see event_new(), event_free(), event_assign(), event_get_assignment(),
309 * initialized (via event_assign, event_set, or event_new) but not yet
557 to event_new as the argument to callback.
725 * Flags to pass to event_new(), event_assign(), event_pending(), and
756 #define evtimer_new(b, cb, arg) event_new((b), -1, 0, (cb), (arg))
773 event_new((b), (x), EV_SIGNAL|EV_PERSIST, (cb), (arg))
788 @see event_new()
795 The function event_new() returns a new event that can be used in
840 struct event *event_new(struct event_base *, evutil_socket_t, short, event_callback_fn, void *);
847 in future calls to event_add() and event_del(). Unlike event_new(), it
853 The easiest way to avoid this problem is just to use event_new() and
867 makes, are as for event_new().
878 @see event_new(), event_add(), event_del(), event_base_once(),
884 Deallocate a struct event * returned by event_new().
919 event specified in event_assign()/event_new() occurs, or when the time
923 ev argument must be already initialized by event_assign() or event_new()
935 @see event_del(), event_assign(), event_new()