HomeSort by: relevance | last modified time | path
    Searched refs:UV_HANDLE_ACTIVE (Results 1 - 4 of 4) sorted by relevancy

  /src/external/mit/libuv/dist/src/
uv-common.h 84 UV_HANDLE_ACTIVE = 0x00000004,
276 (((h)->flags & UV_HANDLE_ACTIVE) != 0)
291 if (((h)->flags & UV_HANDLE_ACTIVE) != 0) break; \
292 (h)->flags |= UV_HANDLE_ACTIVE; \
299 if (((h)->flags & UV_HANDLE_ACTIVE) == 0) break; \
300 (h)->flags &= ~UV_HANDLE_ACTIVE; \
310 if (((h)->flags & UV_HANDLE_ACTIVE) != 0) uv__active_handle_add(h); \
319 if (((h)->flags & UV_HANDLE_ACTIVE) != 0) uv__active_handle_rm(h); \
uv-common.c 600 "A-"[!(h->flags & UV_HANDLE_ACTIVE)],
  /src/external/mit/libuv/dist/src/win/
handle-inl.h 67 if (!(((handle)->flags & UV_HANDLE_ACTIVE) && \
72 (handle)->flags &= ~UV_HANDLE_ACTIVE; \
handle.c 62 return (handle->flags & UV_HANDLE_ACTIVE) &&

Completed in 40 milliseconds