Home
last modified time | relevance | path

Searched refs:ev_malloc (Results 1 – 5 of 5) sorted by relevance

/libev/
H A Dev_select.c282 vec_ri = ev_malloc (sizeof (fd_set)); FD_ZERO ((fd_set *)vec_ri); in select_init()
283 vec_ro = ev_malloc (sizeof (fd_set)); in select_init()
284 vec_wi = ev_malloc (sizeof (fd_set)); FD_ZERO ((fd_set *)vec_wi); in select_init()
285 vec_wo = ev_malloc (sizeof (fd_set)); in select_init()
287 vec_eo = ev_malloc (sizeof (fd_set)); in select_init()
H A Dev_kqueue.c96 kqueue_events = (struct kevent *)ev_malloc (sizeof (struct kevent) * kqueue_eventmax); in kqueue_poll()
151 kqueue_events = (struct kevent *)ev_malloc (sizeof (struct kevent) * kqueue_eventmax); in kqueue_poll()
170 kqueue_events = (struct kevent *)ev_malloc (sizeof (struct kevent) * kqueue_eventmax); in kqueue_init()
H A Dev_port.c135 port_events = (port_event_t *)ev_malloc (sizeof (port_event_t) * port_eventmax); in port_poll()
161 port_events = (port_event_t *)ev_malloc (sizeof (port_event_t) * port_eventmax); in port_init()
H A Dev_epoll.c219 epoll_events = (struct epoll_event *)ev_malloc (sizeof (struct epoll_event) * epoll_eventmax); in epoll_poll()
258 epoll_events = (struct epoll_event *)ev_malloc (sizeof (struct epoll_event) * epoll_eventmax); in epoll_init()
H A Dev.c1750 #define ev_malloc(size) ev_realloc (0, (size)) macro
3078 EV_P = (struct ev_loop *)ev_malloc (sizeof (struct ev_loop)); in ev_loop_new()
4952 struct ev_once *once = (struct ev_once *)ev_malloc (sizeof (struct ev_once)); in ev_once()