Home
last modified time | relevance | path

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

/third_party/libuv/src/
Duv-common.h78 UV_HANDLE_ACTIVE = 0x00000004, enumerator
264 (((h)->flags & UV_HANDLE_ACTIVE) != 0)
271 if (((h)->flags & UV_HANDLE_ACTIVE) != 0) break; \
272 (h)->flags |= UV_HANDLE_ACTIVE; \
279 if (((h)->flags & UV_HANDLE_ACTIVE) == 0) break; \
280 (h)->flags &= ~UV_HANDLE_ACTIVE; \
290 if (((h)->flags & UV_HANDLE_ACTIVE) != 0) uv__active_handle_add(h); \
299 if (((h)->flags & UV_HANDLE_ACTIVE) != 0) uv__active_handle_rm(h); \
Duv-common.c543 "A-"[!(h->flags & UV_HANDLE_ACTIVE)], in uv__print_handles()
/third_party/libuv/src/win/
Dhandle-inl.h67 if (!(((handle)->flags & UV_HANDLE_ACTIVE) && \
72 (handle)->flags &= ~UV_HANDLE_ACTIVE; \
Dhandle.c62 return (handle->flags & UV_HANDLE_ACTIVE) && in uv_is_active()