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

  /src/external/mit/libuv/dist/test/
test-poll-multiple-handles.c 41 static void poll_cb(uv_poll_t* handle, int status, int events) { function
71 ASSERT_OK(uv_poll_start(&first_poll_handle, UV_READABLE, poll_cb));
80 ASSERT_EQ(uv_poll_start(&second_poll_handle, UV_READABLE, poll_cb),
86 ASSERT_OK(uv_poll_start(&second_poll_handle, UV_READABLE, poll_cb));
test-poll-closesocket.c 39 static void poll_cb(uv_poll_t* h, int status, int events) { function
45 r = uv_poll_start(&handle, UV_READABLE, poll_cb);
82 r = uv_poll_start(&handle, UV_WRITABLE, poll_cb);
test-poll-oob.c 68 static void poll_cb(uv_poll_t* handle, int status, int events) { function
85 poll_cb));
149 poll_cb));
152 poll_cb));
test-poll-close-doesnt-corrupt-stack.c 45 static void poll_cb(uv_poll_t* h, int status, int events) { function
99 r = uv_poll_start(&handle, UV_READABLE | UV_WRITABLE, poll_cb);
test-fs-poll.c 31 static void poll_cb(uv_fs_poll_t* handle,
98 static void poll_cb(uv_fs_poll_t* handle, function
160 ASSERT_OK(uv_fs_poll_start(&poll_handle, poll_cb, FIXTURE, 100));
  /src/external/mit/libuv/dist/src/unix/
poll.c 49 handle->poll_cb(handle, UV_EBADF, 0);
63 handle->poll_cb(handle, 0, pevents);
91 handle->poll_cb = NULL;
118 int uv_poll_start(uv_poll_t* handle, int pevents, uv_poll_cb poll_cb) {
151 handle->poll_cb = poll_cb;
  /src/external/mit/libuv/dist/src/
fs-poll.c 43 uv_fs_poll_cb poll_cb; member in struct:poll_ctx
52 static void poll_cb(uv_fs_t* req);
86 ctx->poll_cb = cb;
99 err = uv_fs_stat(loop, &ctx->fs_req, ctx->path, poll_cb);
127 * in progress and poll_cb will take care of the cleanup.
183 if (uv_fs_stat(ctx->loop, &ctx->fs_req, ctx->path, poll_cb))
188 static void poll_cb(uv_fs_t* req) { function
202 ctx->poll_cb(ctx->parent_handle,
215 ctx->poll_cb(ctx->parent_handle, 0, &ctx->statbuf, statbuf);
  /src/external/mit/libuv/dist/src/win/
poll.c 162 handle->poll_cb(handle, uv_translate_sys_error(error), 0);
190 handle->poll_cb(handle, 0, events);
389 handle->poll_cb(handle, uv_translate_sys_error(err), 0);
395 handle->poll_cb(handle, 0, events);
496 handle->poll_cb = cb;
524 return uv__poll_set(handle, 0, handle->poll_cb);
  /src/external/mit/libuv/dist/include/
uv.h 900 uv_poll_cb poll_cb; member in struct:uv_poll_s
1704 uv_fs_poll_cb poll_cb,

Completed in 34 milliseconds