| /src/external/mit/libuv/dist/docs/code/idle-basic/ |
| main.c | 6 void wait_for_a_while(uv_idle_t* handle) { 14 uv_idle_t idler;
|
| /src/external/mit/libuv/dist/test/ |
| test-run-once.c | 27 static uv_idle_t idle_handle; 31 static void idle_cb(uv_idle_t* handle) {
|
| benchmark-loop-count.c | 31 static uv_idle_t idle_handle; 35 static void idle_cb(uv_idle_t* handle) { 41 static void idle2_cb(uv_idle_t* handle) {
|
| test-udp-send-hang-loop.c | 33 static uv_idle_t idle_handle; 44 static void idle_cb(uv_idle_t* handle) { 48 CHECK_OBJECT(handle, uv_idle_t, idle_handle);
|
| test-idle.c | 26 static uv_idle_t idle_handle; 54 static void idle_cb(uv_idle_t* handle) { 102 static void idle_stop(uv_idle_t* handle) {
|
| benchmark-sizes.c | 36 fprintf(stderr, "uv_idle_t: %u bytes\n", (unsigned int) sizeof(uv_idle_t));
|
| test-iouring-pollhup.c | 37 static uv_idle_t idle_handle; 67 static void idle_cb(uv_idle_t* handle) {
|
| test-loop-handles.c | 83 static uv_idle_t idle_1_handles[IDLE_COUNT]; 84 static uv_idle_t idle_2_handle; 128 static void idle_2_cb(uv_idle_t* handle) { 140 static void idle_1_cb(uv_idle_t* handle) { 162 r = uv_idle_stop((uv_idle_t*)handle);
|
| test-tcp-oob.c | 34 static uv_idle_t idle; 47 static void idle_cb(uv_idle_t* idle) {
|
| test-poll-oob.c | 37 static uv_idle_t idle; 55 static void idle_cb(uv_idle_t* idle) {
|
| benchmark-multi-accept.c | 79 uv_idle_t idle_handle; 101 static void cl_idle_cb(uv_idle_t* handle); 337 static void cl_idle_cb(uv_idle_t* handle) {
|
| test-handle-fileno.c | 55 uv_idle_t idle;
|
| test-queue-foreach-delete.c | 41 * 2. Trigger handles to fire (for uv_idle_t, uv_prepare_t, and uv_check_t there is nothing to do). 45 * (for uv_idle_t, uv_prepare_t, and uv_check_t callbacks are executed in the reverse order as they are start()'ed, 122 DEFINE_GLOBALS_AND_CBS(idle, uv_idle_t* handle)
|
| test-ref.c | 110 uv_idle_t h; 437 uv_idle_t h;
|
| /src/external/mit/libuv/dist/docs/code/uvstop/ |
| main.c | 6 void idle_cb(uv_idle_t *handle) { 21 uv_idle_t idler;
|
| /src/external/mit/libuv/dist/docs/code/idle-compute/ |
| main.c | 7 uv_idle_t idler; 10 void crunch_away(uv_idle_t* handle) {
|
| /src/external/mpl/bind/dist/lib/isc/ |
| job_p.h | 42 isc__job_cb(uv_idle_t *handle);
|
| job.c | 64 isc__job_cb(uv_idle_t *handle) {
|
| loop_p.h | 65 uv_idle_t run_trigger;
|
| /src/external/mit/libuv/dist/src/win/ |
| handle.c | 118 uv_idle_stop((uv_idle_t*)handle);
|
| /src/external/mit/libuv/dist/include/uv/ |
| win.h | 335 uv_idle_t* idle_handles; \ 342 uv_idle_t* next_idle_handle; \ 575 uv_idle_t* idle_prev; \ 576 uv_idle_t* idle_next; \
|
| /src/external/mit/libuv/dist/include/ |
| uv.h | 232 typedef struct uv_idle_s uv_idle_t; typedef in typeref:struct:uv_idle_s 341 typedef void (*uv_idle_cb)(uv_idle_t* handle); 944 UV_EXTERN int uv_idle_init(uv_loop_t*, uv_idle_t* idle); 945 UV_EXTERN int uv_idle_start(uv_idle_t* idle, uv_idle_cb cb); 946 UV_EXTERN int uv_idle_stop(uv_idle_t* idle);
|
| /src/external/mit/libuv/dist/src/unix/ |
| internal.h | 328 void uv__idle_close(uv_idle_t* handle);
|
| core.c | 191 uv__idle_close((uv_idle_t*)handle);
|