Home
last modified time | relevance | path

Searched refs:UV_HANDLE_ACTIVE (Results 1 – 4 of 4) sorted by relevance

/libuv/src/
H A Duv-common.h83 UV_HANDLE_ACTIVE = 0x00000004, enumerator
265 (((h)->flags & UV_HANDLE_ACTIVE) != 0)
280 if (((h)->flags & UV_HANDLE_ACTIVE) != 0) break; \
281 (h)->flags |= UV_HANDLE_ACTIVE; \
288 if (((h)->flags & UV_HANDLE_ACTIVE) == 0) break; \
289 (h)->flags &= ~UV_HANDLE_ACTIVE; \
299 if (((h)->flags & UV_HANDLE_ACTIVE) != 0) uv__active_handle_add(h); \
308 if (((h)->flags & UV_HANDLE_ACTIVE) != 0) uv__active_handle_rm(h); \
H A Duv-common.c581 "A-"[!(h->flags & UV_HANDLE_ACTIVE)], in uv__print_handles()
/libuv/src/win/
H A Dhandle-inl.h67 if (!(((handle)->flags & UV_HANDLE_ACTIVE) && \
72 (handle)->flags &= ~UV_HANDLE_ACTIVE; \
H A Dhandle.c62 return (handle->flags & UV_HANDLE_ACTIVE) && in uv_is_active()

Completed in 16 milliseconds