Lines Matching defs:cb
37 ev_callback cb;
79 ev_fdinfo[ev_count].cb = input_cb;
90 int ev_add_fd(int fd, ev_callback cb, void *data)
92 if (ev_misc_count == MAX_MISC_FDS || cb == NULL)
97 ev_fdinfo[ev_count].cb = cb;
129 ev_callback cb = ev_fdinfo[n].cb;
130 if (cb && (ev_fds[n].revents & ev_fds[n].events))
131 cb(ev_fds[n].fd, ev_fds[n].revents, ev_fdinfo[n].data);