Searched refs:async_cb (Results 1 – 11 of 11) sorted by relevance
/third_party/libuv/src/win/ |
D | async.c | 40 int uv_async_init(uv_loop_t* loop, uv_async_t* handle, uv_async_cb async_cb) { in uv_async_init() argument 45 handle->async_cb = async_cb; in uv_async_init() 95 } else if (handle->async_cb != NULL) { in uv__process_async_wakeup_req() 96 handle->async_cb(handle); in uv__process_async_wakeup_req()
|
/third_party/libuv/src/unix/ |
D | async.c | 45 int uv_async_init(uv_loop_t* loop, uv_async_t* handle, uv_async_cb async_cb) { in uv_async_init() argument 53 handle->async_cb = async_cb; in uv_async_init() 160 if (h->async_cb == NULL) in uv__async_io() 163 h->async_cb(h); in uv__async_io()
|
/third_party/glib/gio/tests/ |
D | send-data.c | 53 async_cb (GObject *source_object, in async_cb() function 132 cancellable, async_cb, &res); in main() 184 0, cancellable, async_cb, &res); in main()
|
/third_party/libuv/test/ |
D | test-async.c | 78 static void async_cb(uv_async_t* handle) { in async_cb() function 120 r = uv_async_init(uv_default_loop(), &async, async_cb); in TEST_IMPL()
|
D | benchmark-async-pummel.c | 39 static void async_cb(uv_async_t* handle) { in async_cb() function 73 ASSERT(0 == uv_async_init(uv_default_loop(), &handle, async_cb)); in test_async_pummel()
|
D | benchmark-million-async.c | 53 static void async_cb(uv_async_t* handle) { in async_cb() function 95 ASSERT(0 == uv_async_init(loop, handle, async_cb)); in BENCHMARK_IMPL()
|
/third_party/libuv/docs/src/ |
D | async.rst | 34 .. c:function:: int uv_async_init(uv_loop_t* loop, uv_async_t* async, uv_async_cb async_cb)
|
/third_party/libuv/include/uv/ |
D | unix.h | 326 uv_async_cb async_cb; \
|
D | win.h | 553 uv_async_cb async_cb; \
|
/third_party/libuv/include/uv_ndk/ |
D | uv.h | 859 uv_async_cb async_cb);
|
/third_party/libuv/include/ |
D | uv.h | 872 uv_async_cb async_cb);
|