Home
last modified time | relevance | path

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

/netbsd/external/mit/libuv/dist/src/
H A Duv-common.h78 UV_HANDLE_ACTIVE = 0x00000004, enumerator
261 (((h)->flags & UV_HANDLE_ACTIVE) != 0)
268 if (((h)->flags & UV_HANDLE_ACTIVE) != 0) break; \
269 (h)->flags |= UV_HANDLE_ACTIVE; \
276 if (((h)->flags & UV_HANDLE_ACTIVE) == 0) break; \
277 (h)->flags &= ~UV_HANDLE_ACTIVE; \
287 if (((h)->flags & UV_HANDLE_ACTIVE) != 0) uv__active_handle_add(h); \
296 if (((h)->flags & UV_HANDLE_ACTIVE) != 0) uv__active_handle_rm(h); \
H A Duv-common.c545 "A-"[!(h->flags & UV_HANDLE_ACTIVE)], in uv__print_handles()
/netbsd/external/mit/libuv/dist/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()