Home
last modified time | relevance | path

Searched refs:current_events (Results 1 – 2 of 2) sorted by relevance

/third_party/libwebsockets/lib/event-libs/libuv/
Dlibuv.c545 int current_events = w->actual_events & (UV_READABLE | UV_WRITABLE); in elops_io_uv() local
570 current_events |= UV_WRITABLE; in elops_io_uv()
573 current_events |= UV_READABLE; in elops_io_uv()
575 uv_poll_start(w->pwatcher, current_events, lws_io_cb); in elops_io_uv()
578 current_events &= ~UV_WRITABLE; in elops_io_uv()
581 current_events &= ~UV_READABLE; in elops_io_uv()
583 if (!(current_events & (UV_READABLE | UV_WRITABLE))) in elops_io_uv()
586 uv_poll_start(w->pwatcher, current_events, lws_io_cb); in elops_io_uv()
589 w->actual_events = (uint8_t)current_events; in elops_io_uv()
/third_party/glib/gio/
Dgsocket.c247 int current_events; member
340 socket->priv->current_events &= ~mask; in _win32_unset_event_mask()
3871 socket->priv->current_events |= events.lNetworkEvents; in update_condition_unlocked()
3881 if (socket->priv->current_events & (FD_READ | FD_ACCEPT)) in update_condition_unlocked()
3884 if (socket->priv->current_events & FD_CLOSE) in update_condition_unlocked()
3909 socket->priv->current_events & FD_WRITE) in update_condition_unlocked()
3918 if (socket->priv->current_events & FD_CONNECT) in update_condition_unlocked()