/netbsd-src/external/mit/libuv/dist/include/uv/ |
H A D | unix.h | 92 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 D | aix.h | 29 uv__io_t event_watcher; \
|
H A D | bsd.h | 26 uv__io_t event_watcher; \
|
H A D | linux.h | 26 uv__io_t inotify_read_watcher; \
|
H A D | sunos.h | 33 uv__io_t fs_event_watcher; \
|
H A D | darwin.h | 46 uv__io_t event_watcher; \
|
/netbsd-src/external/mit/libuv/dist/src/unix/ |
H A D | internal.h | 209 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 D | poll.c | 30 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 D | epoll.c | 122 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 D | posix-poll.c | 86 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 D | core.c | 801 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 D | kqueue.c | 48 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 D | linux-inotify.c | 62 uv__io_t* w, 168 uv__io_t* dummy, in uv__inotify_read()
|
H A D | signal.c | 48 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 D | sunos.c | 152 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 D | async.c | 122 static void uv__async_io(uv_loop_t* loop, uv__io_t* w, unsigned int events) { in uv__async_io()
|
H A D | loop.c | 135 uv__io_t* w; in uv_loop_fork()
|
H A D | aix.c | 139 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 D | os390.c | 813 uv__io_t* w; in uv__io_poll() 834 w = QUEUE_DATA(q, uv__io_t, watcher_queue); in uv__io_poll()
|
H A D | stream.c | 66 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 D | udp.c | 50 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 D | SUPPORTED_PLATFORMS.md | 37 I/O handling is abstracted by an internal `uv__io_t` handle. The new platform
|