HomeSort by: relevance | last modified time | path
    Searched refs:pevents (Results 1 - 12 of 12) sorted by relevancy

  /src/external/mit/libuv/dist/src/unix/
poll.c 31 int pevents; local
53 pevents = 0;
55 pevents |= UV_READABLE;
57 pevents |= UV_PRIORITIZED;
59 pevents |= UV_WRITABLE;
61 pevents |= UV_DISCONNECT;
63 handle->poll_cb(handle, 0, pevents);
118 int uv_poll_start(uv_poll_t* handle, int pevents, uv_poll_cb poll_cb) {
123 assert((pevents & ~(UV_READABLE | UV_WRITABLE | UV_DISCONNECT |
136 if (pevents == 0
    [all...]
epoll.c 149 assert(w->pevents != 0);
153 e.events = w->pevents;
175 w->events = w->pevents;
345 pe->events &= w->pevents | POLLERR | POLLHUP;
364 w->pevents & (POLLIN | POLLOUT | UV__POLLRDHUP | UV__POLLPRI);
posix-poll.c 94 loop->poll_fds[i].events = w->pevents;
103 pe->events = w->pevents;
165 assert(w->pevents != 0);
171 w->events = w->pevents;
289 pe->revents &= w->pevents | POLLERR | POLLHUP;
kqueue.c 198 assert(w->pevents != 0);
202 if ((w->events & POLLIN) == 0 && (w->pevents & POLLIN) != 0) {
223 if ((w->events & POLLOUT) == 0 && (w->pevents & POLLOUT) != 0) {
233 if ((w->events & UV__POLLPRI) == 0 && (w->pevents & UV__POLLPRI) != 0) {
243 w->events = w->pevents;
377 assert(w->pevents == POLLIN);
387 if (w->pevents & POLLIN)
392 if ((ev->flags & EV_EOF) && (w->pevents & UV__POLLRDHUP))
397 if (w->pevents & UV__POLLPRI)
404 if (w->pevents & POLLOUT
    [all...]
sunos.c 179 assert(w->pevents != 0);
184 w->pevents,
190 w->events = w->pevents;
319 if (w->pevents != 0 && uv__queue_empty(&w->watcher_queue))
os390.c 846 assert(w->pevents != 0);
853 e.events = w->pevents;
875 w->events = w->pevents;
998 pe->events &= w->pevents | POLLERR | POLLHUP;
1001 pe->events |= w->pevents & (POLLIN | POLLOUT);
loop.c 159 if (w->pevents != 0 && uv__queue_empty(&w->watcher_queue)) {
core.c 913 w->pevents = 0;
925 w->pevents |= events;
935 if (w->events == w->pevents)
981 w->pevents &= ~events;
983 if (w->pevents == 0) {
1018 return 0 != (w->pevents & events);
async.c 325 loop->async_io_watcher.events = loop->async_io_watcher.pevents;
aix.c 166 assert(w->pevents != 0);
170 pc.events = w->pevents;
216 w->events = w->pevents;
linux.c 1416 w->events = w->pevents;
1417 e.events = w->pevents;
1536 pe->events &= w->pevents | POLLERR | POLLHUP;
1555 w->pevents & (POLLIN | POLLOUT | UV__POLLRDHUP | UV__POLLPRI);
  /src/external/mit/libuv/dist/include/uv/
unix.h 97 unsigned int pevents; /* Pending event mask i.e. mask at next tick. */ member in struct:uv__io_s

Completed in 20 milliseconds