Searched refs:done (Results 1 – 25 of 34) sorted by relevance
12
/libuv/test/ |
H A D | benchmark-queue-work.c | 25 static int done = 0; variable 42 if (!done) in after_work_cb() 46 static void timer_cb(uv_timer_t* handle) { done = 1; } in timer_cb()
|
H A D | benchmark-million-async.c | 31 static volatile int done; variable 46 while (done == 0) { in thread_cb() 62 done = 1; in timer_cb()
|
H A D | benchmark-spawn.c | 30 static int done; variable 52 done++; in maybe_spawn() 53 if (done < N) { in maybe_spawn()
|
H A D | benchmark-async-pummel.c | 32 static volatile int done; variable 85 done = 1; in test_async_pummel()
|
H A D | test-tcp-reuseport.c | 86 int done = 0; in ticktack() local 89 done = 1; in ticktack() 93 if (done) { in ticktack()
|
H A D | test-signal-multiple-loops.c | 165 int done; in loop_creating_worker() local 195 done = stop; in loop_creating_worker() 197 } while (!done); in loop_creating_worker()
|
H A D | test-udp-reuseport.c | 105 int done = 0; in ticktack() local 111 done = 1; in ticktack() 115 if (done) { in ticktack()
|
/libuv/src/ |
H A D | threadpool.c | 269 void (*done)(struct uv__work* w, int status)) { in uv__work_submit() 273 w->done = done; in uv__work_submit() 329 w->done(w, err); in uv__work_done()
|
H A D | uv-common.h | 213 void (*done)(struct uv__work *w, int status));
|
/libuv/src/win/ |
H A D | process.c | 957 goto done; in uv_spawn() 963 goto done; in uv_spawn() 969 goto done; in uv_spawn() 983 goto done; in uv_spawn() 990 goto done; in uv_spawn() 997 goto done; in uv_spawn() 1006 goto done; in uv_spawn() 1069 goto done; in uv_spawn() 1098 goto done; in uv_spawn() 1137 done: in uv_spawn()
|
H A D | udp.c | 423 goto done; in uv__process_udp_recv_req() 434 goto done; in uv__process_udp_recv_req() 462 goto done; in uv__process_udp_recv_req() 514 done: in uv__process_udp_recv_req()
|
H A D | tcp.c | 1024 goto done; in uv__process_tcp_read_req() 1036 goto done; in uv__process_tcp_read_req() 1099 done: in uv__process_tcp_read_req()
|
H A D | util.c | 362 goto done; in uv_set_process_title() 372 done: in uv_set_process_title()
|
/libuv/include/uv/ |
H A D | threadpool.h | 32 void (*done)(struct uv__work *w, int status); member
|
/libuv/ |
H A D | SUPPORTED_PLATFORMS.md | 46 file inside ``src/unix/`` unless it's already done in a common file, in which 59 new API is to be used, it must be done optionally, only in supported versions.
|
/libuv/src/unix/ |
H A D | tty.c | 344 goto done; in uv__tty_close() 364 done: in uv__tty_close()
|
H A D | stream.c | 553 goto done; in uv_accept() 561 goto done; in uv_accept() 571 done: in uv_accept()
|
H A D | linux.c | 801 req->work_req.done = NULL; in uv__iou_get_sqe() 1636 goto done; in uv__hrtime() 1640 goto done; in uv__hrtime() 1649 done: in uv__hrtime()
|
/libuv/m4/ |
H A D | libuv-check-flags.m4 | 84 done 139 done 327 done
|
H A D | ax_pthread.m4 | 309 done 393 done 412 done
|
/libuv/docs/src/guide/ |
H A D | utilities.rst | 80 other watchers are done. In that case just unref the timer immediately after 96 Observe how after 9 seconds, when the fake job is done, the program 269 In the case that the download is done or fails, libcurl requests removal of the 294 transfers are done. 347 This is done by using ``uv_dlopen`` to first load the shared library
|
H A D | basics.rst | 39 functions don't return until the task is done, so that your program is doing 140 usually done by creating a **handle** to an I/O device, timer or process. 195 structure that is passed to the callback after the write is done.
|
H A D | threads.rst | 12 the result when it is done. 179 After all threads are done, ``i == 1``. 193 task is done. A seemingly simple function, what makes ``uv_queue_work()`` 387 3. The actual work being done in a separate thread wants to invoke the progress
|
/libuv/docs/src/ |
H A D | loop.rst | 127 there are no pending callbacks. Returns zero when done (no active handles 131 pending callbacks. Returns zero if done (no active handles
|
H A D | tcp.rst | 155 This is done to match the behavior of Linux systems.
|
Completed in 54 milliseconds
12