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

  /src/external/mit/libuv/dist/test/
test-active.c 50 /* uv_is_active() and uv_is_closing() should always return either 0 or 1. */
51 ASSERT_OK(uv_is_active((uv_handle_t*) &timer));
57 ASSERT_EQ(1, uv_is_active((uv_handle_t*) &timer));
63 ASSERT_OK(uv_is_active((uv_handle_t*) &timer));
69 ASSERT_EQ(1, uv_is_active((uv_handle_t*) &timer));
74 ASSERT_OK(uv_is_active((uv_handle_t*) &timer));
test-close-fd.c 76 ASSERT_OK(uv_is_active((const uv_handle_t *) &pipe_handle));
test-poll-multiple-handles.c 96 ASSERT(uv_is_active((uv_handle_t*) &second_poll_handle));
test-timer.c 45 ASSERT_OK(uv_is_active(handle));
55 ASSERT_OK(uv_is_active((uv_handle_t*) handle));
69 ASSERT_OK(uv_is_active(handle));
78 ASSERT_OK(uv_is_active((uv_handle_t*) handle));
100 ASSERT_EQ(1, uv_is_active((uv_handle_t*) handle));
190 ASSERT_OK(uv_is_active((uv_handle_t*) &handle));
test-timer-again.c 80 ASSERT_OK(uv_is_active((uv_handle_t*) handle));
test-poll.c 277 if (!uv_is_active((uv_handle_t*) &context->timer_handle)) {
376 if (!uv_is_active((uv_handle_t*) &context->timer_handle)) {
434 /* Assert that uv_is_active works correctly for poll handles. */
436 ASSERT_EQ(1, uv_is_active((uv_handle_t*) handle));
438 ASSERT_OK(uv_is_active((uv_handle_t*) handle));
448 ASSERT_OK(uv_is_active((uv_handle_t*) timer));
test-fs-poll.c 107 ASSERT_EQ(1, uv_is_active((uv_handle_t*) handle));
test-spawn.c 195 ASSERT_OK(uv_is_active((uv_handle_t*) &process));
215 ASSERT_OK(uv_is_active((uv_handle_t*) &process));
1363 ASSERT_OK(uv_is_active((uv_handle_t*) &process));
1452 ASSERT_OK(uv_is_active((uv_handle_t*) &process));
test-fs-event.c 1168 ASSERT_OK(uv_is_active((uv_handle_t*) &fs_event));
1171 ASSERT_OK(uv_is_active((uv_handle_t*) &fs_event));
  /src/external/mit/libuv/dist/src/
fs-poll.c 75 if (uv_is_active((uv_handle_t*)handle))
119 if (!uv_is_active((uv_handle_t*)handle))
129 if (uv_is_active((uv_handle_t*)&ctx->timer_handle))
145 if (!uv_is_active((uv_handle_t*)handle)) {
197 if (!uv_is_active((uv_handle_t*)handle) || uv__is_closing(handle))
223 if (!uv_is_active((uv_handle_t*)handle) || uv__is_closing(handle)) {
  /src/external/mit/libuv/dist/src/win/
handle.c 61 int uv_is_active(const uv_handle_t* handle) { function
  /src/external/mpl/bind/dist/lib/isc/netmgr/
tcp.c 817 } else if (uv_is_active(&sock->uv_handle.handle) &&
1069 !uv_is_active(&sock->uv_handle.handle))
1347 REQUIRE(!uv_is_active(&sock->uv_handle.handle));
netmgr.c 1255 return uv_is_active((uv_handle_t *)&sock->read_timer);
1388 if (uv_is_active(&sock->uv_handle.handle)) {
1415 if (!uv_is_active(&sock->uv_handle.handle)) {
1471 if (uv_is_active((uv_handle_t *)&handle->sock->read_timer)) {
1966 uv_is_active(&sock->uv_handle.handle))
  /src/external/mpl/dhcp/bind/dist/lib/isc/netmgr/
netmgr.c 2040 return (uv_is_active((uv_handle_t *)&sock->read_timer));
2302 if (uv_is_active((uv_handle_t *)&handle->sock->read_timer)) {
2733 uv_is_active(&sock->uv_handle.handle))
  /src/external/mit/libuv/dist/include/
uv.h 498 UV_EXTERN int uv_is_active(const uv_handle_t* handle);
  /src/external/mit/libuv/dist/src/unix/
core.c 500 int uv_is_active(const uv_handle_t* handle) { function

Completed in 71 milliseconds