| /src/external/mit/libuv/dist/test/ |
| test-async-null-cb.c | 27 static uv_check_t check_handle; 38 static void check_cb(uv_check_t* handle) {
|
| benchmark-sizes.c | 35 fprintf(stderr, "uv_check_t: %u bytes\n", (unsigned int) sizeof(uv_check_t));
|
| test-close-order.c | 29 static uv_check_t check_handle; 41 static void check_cb(uv_check_t* handle) {
|
| test-timer-from-check.c | 26 static uv_check_t check_handle; 52 static void check_cb(uv_check_t* handle) {
|
| test-idle.c | 27 static uv_check_t check_handle; 63 static void check_cb(uv_check_t* handle) {
|
| test-udp-recv-in-a-row.c | 31 static uv_check_t check_handle; 65 static void check_cb(uv_check_t* handle) {
|
| test-tcp-unexpected-read.c | 25 static uv_check_t check_handle; 36 static void check_cb(uv_check_t* handle) {
|
| test-loop-handles.c | 81 static uv_check_t check_handle; 206 static void check_cb(uv_check_t* handle) {
|
| 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, 124 DEFINE_GLOBALS_AND_CBS(check, uv_check_t* handle)
|
| test-ref.c | 145 uv_check_t h;
|
| /src/external/mit/libuv/dist/src/win/ |
| handle.c | 112 uv_check_stop((uv_check_t*)handle);
|
| /src/external/mit/libuv/dist/include/uv/ |
| win.h | 334 uv_check_t* check_handles; \ 341 uv_check_t* next_check_handle; \ 570 uv_check_t* check_prev; \ 571 uv_check_t* check_next; \
|
| /src/external/mit/libuv/dist/include/ |
| uv.h | 231 typedef struct uv_check_s uv_check_t; typedef in typeref:struct:uv_check_s 340 typedef void (*uv_check_cb)(uv_check_t* handle); 934 UV_EXTERN int uv_check_init(uv_loop_t*, uv_check_t* check); 935 UV_EXTERN int uv_check_start(uv_check_t* check, uv_check_cb cb); 936 UV_EXTERN int uv_check_stop(uv_check_t* check);
|
| /src/external/mit/libuv/dist/src/unix/ |
| internal.h | 326 void uv__check_close(uv_check_t* handle);
|
| core.c | 187 uv__check_close((uv_check_t*)handle);
|