Home | History | Annotate | Download | only in libevent

Lines Matching full:event_base

34  * event_base.
37 struct event_base;
53 event_base's list of events on a given file descriptor, and tell the
58 @param base the event_base to operate on.
62 int evmap_io_add_(struct event_base *base, evutil_socket_t fd, struct event *ev);
64 event_base's list of events on a given file descriptor, and tell the
67 @param base the event_base to operate on.
71 int evmap_io_del_(struct event_base *base, evutil_socket_t fd, struct event *ev);
72 /** Active the set of events waiting on an event_base for a given fd.
74 @param base the event_base to operate on.
78 void evmap_io_active_(struct event_base *base, evutil_socket_t fd, short events);
84 int evmap_signal_add_(struct event_base *base, int signum, struct event *ev);
85 int evmap_signal_del_(struct event_base *base, int signum, struct event *ev);
86 void evmap_signal_active_(struct event_base *base, evutil_socket_t signum, int ncalls);
96 int evmap_reinit_(struct event_base *base);
101 void evmap_delete_all_(struct event_base *base);
106 void evmap_check_integrity_(struct event_base *base);
109 * provided event_base, the event, and arg. If fn returns 0, process the next
113 int evmap_foreach_event_(struct event_base *base,