Home
last modified time | relevance | path

Searched refs:uv__io_t (Results 1 – 22 of 22) sorted by relevance

/netbsd-src/external/mit/libuv/dist/include/uv/
H A Dunix.h92 typedef struct uv__io_s uv__io_t; typedef
226 uv__io_t** watchers; \
240 uv__io_t async_io_watcher; \
249 uv__io_t signal_io_watcher; \
289 uv__io_t io_watcher; \
303 uv__io_t io_watcher; \
311 uv__io_t io_watcher;
H A Daix.h29 uv__io_t event_watcher; \
H A Dbsd.h26 uv__io_t event_watcher; \
H A Dlinux.h26 uv__io_t inotify_read_watcher; \
H A Dsunos.h33 uv__io_t fs_event_watcher; \
H A Ddarwin.h46 uv__io_t event_watcher; \
/netbsd-src/external/mit/libuv/dist/src/unix/
H A Dinternal.h209 void uv__io_init(uv__io_t* w, uv__io_cb cb, int fd);
210 void uv__io_start(uv_loop_t* loop, uv__io_t* w, unsigned int events);
211 void uv__io_stop(uv_loop_t* loop, uv__io_t* w, unsigned int events);
212 void uv__io_close(uv_loop_t* loop, uv__io_t* w);
213 void uv__io_feed(uv_loop_t* loop, uv__io_t* w);
214 int uv__io_active(const uv__io_t* w, unsigned int events);
238 void uv__server_io(uv_loop_t* loop, uv__io_t* w, unsigned int events);
H A Dpoll.c30 static void uv__poll_io(uv_loop_t* loop, uv__io_t* w, unsigned int events) { in uv__poll_io()
120 uv__io_t** watchers; in uv_poll_start()
121 uv__io_t* w; in uv_poll_start()
H A Depoll.c122 uv__io_t* w; in uv__io_poll()
148 w = QUEUE_DATA(q, uv__io_t, watcher_queue); in uv__io_poll()
308 uv__io_t* watchers; in uv__io_poll()
H A Dposix-poll.c86 static void uv__pollfds_add(uv_loop_t* loop, uv__io_t* w) { in uv__pollfds_add()
140 uv__io_t* w; in uv__io_poll()
161 w = QUEUE_DATA(q, uv__io_t, watcher_queue); in uv__io_poll()
H A Dcore.c801 uv__io_t* w; in uv__run_pending()
809 w = QUEUE_DATA(q, uv__io_t, pending_queue); in uv__run_pending()
827 uv__io_t** watchers; in maybe_resize()
861 void uv__io_init(uv__io_t* w, uv__io_cb cb, int fd) { in uv__io_init()
878 void uv__io_start(uv_loop_t* loop, uv__io_t* w, unsigned int events) { in uv__io_start()
906 void uv__io_stop(uv_loop_t* loop, uv__io_t* w, unsigned int events) { in uv__io_stop()
937 void uv__io_close(uv_loop_t* loop, uv__io_t* w) { in uv__io_close()
947 void uv__io_feed(uv_loop_t* loop, uv__io_t* w) { in uv__io_feed()
953 int uv__io_active(const uv__io_t* w, unsigned int events) { in uv__io_active()
H A Dkqueue.c48 static void uv__fs_event(uv_loop_t* loop, uv__io_t* w, unsigned int fflags);
119 uv__io_t* w; in uv__io_poll()
148 w = QUEUE_DATA(q, uv__io_t, watcher_queue); in uv__io_poll()
464 static void uv__fs_event(uv_loop_t* loop, uv__io_t* w, unsigned int fflags) { in uv__fs_event()
H A Dlinux-inotify.c62 uv__io_t* w,
168 uv__io_t* dummy, in uv__inotify_read()
H A Dsignal.c48 static void uv__signal_event(uv_loop_t* loop, uv__io_t* w, unsigned int events);
417 uv__io_t* w, in uv__signal_event()
H A Dsunos.c152 uv__io_t* w; in uv__io_poll()
178 w = QUEUE_DATA(q, uv__io_t, watcher_queue); in uv__io_poll()
443 uv__io_t* w, in uv__fs_event_read()
H A Dasync.c122 static void uv__async_io(uv_loop_t* loop, uv__io_t* w, unsigned int events) { in uv__async_io()
H A Dloop.c135 uv__io_t* w; in uv_loop_fork()
H A Daix.c139 uv__io_t* w; in uv__io_poll()
162 w = QUEUE_DATA(q, uv__io_t, watcher_queue); in uv__io_poll()
703 static void uv__ahafs_event(uv_loop_t* loop, uv__io_t* event_watch, unsigned int fflags) { in uv__ahafs_event()
H A Dos390.c813 uv__io_t* w; in uv__io_poll()
834 w = QUEUE_DATA(q, uv__io_t, watcher_queue); in uv__io_poll()
H A Dstream.c66 static void uv__stream_io(uv_loop_t* loop, uv__io_t* w, unsigned int events);
505 void uv__server_io(uv_loop_t* loop, uv__io_t* w, unsigned int events) { in uv__server_io()
1251 static void uv__stream_io(uv_loop_t* loop, uv__io_t* w, unsigned int events) { in uv__stream_io()
H A Dudp.c50 static void uv__udp_io(uv_loop_t* loop, uv__io_t* w, unsigned int revents);
171 static void uv__udp_io(uv_loop_t* loop, uv__io_t* w, unsigned int revents) { in uv__udp_io()
/netbsd-src/external/mit/libuv/dist/
H A DSUPPORTED_PLATFORMS.md37 I/O handling is abstracted by an internal `uv__io_t` handle. The new platform