Lines Matching defs:pevents
32 int pevents;
54 pevents = 0;
56 pevents |= UV_READABLE;
58 pevents |= UV_PRIORITIZED;
60 pevents |= UV_WRITABLE;
62 pevents |= UV_DISCONNECT;
64 handle->poll_cb(handle, 0, pevents);
119 int uv_poll_start(uv_poll_t* handle, int pevents, uv_poll_cb poll_cb) {
124 assert((pevents & ~(UV_READABLE | UV_WRITABLE | UV_DISCONNECT |
137 if (pevents == 0)
141 if (pevents & UV_READABLE)
143 if (pevents & UV_PRIORITIZED)
145 if (pevents & UV_WRITABLE)
147 if (pevents & UV_DISCONNECT)