Home
last modified time | relevance | path

Searched refs:done (Results 1 – 25 of 34) sorted by relevance

12

/libuv/test/
H A Dbenchmark-queue-work.c25 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 Dbenchmark-million-async.c31 static volatile int done; variable
46 while (done == 0) { in thread_cb()
62 done = 1; in timer_cb()
H A Dbenchmark-spawn.c30 static int done; variable
52 done++; in maybe_spawn()
53 if (done < N) { in maybe_spawn()
H A Dbenchmark-async-pummel.c32 static volatile int done; variable
85 done = 1; in test_async_pummel()
H A Dtest-tcp-reuseport.c86 int done = 0; in ticktack() local
89 done = 1; in ticktack()
93 if (done) { in ticktack()
H A Dtest-signal-multiple-loops.c165 int done; in loop_creating_worker() local
195 done = stop; in loop_creating_worker()
197 } while (!done); in loop_creating_worker()
H A Dtest-udp-reuseport.c105 int done = 0; in ticktack() local
111 done = 1; in ticktack()
115 if (done) { in ticktack()
/libuv/src/
H A Dthreadpool.c269 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 Duv-common.h213 void (*done)(struct uv__work *w, int status));
/libuv/src/win/
H A Dprocess.c957 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 Dudp.c423 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 Dtcp.c1024 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 Dutil.c362 goto done; in uv_set_process_title()
372 done: in uv_set_process_title()
/libuv/include/uv/
H A Dthreadpool.h32 void (*done)(struct uv__work *w, int status); member
/libuv/
H A DSUPPORTED_PLATFORMS.md46 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 Dtty.c344 goto done; in uv__tty_close()
364 done: in uv__tty_close()
H A Dstream.c553 goto done; in uv_accept()
561 goto done; in uv_accept()
571 done: in uv_accept()
H A Dlinux.c797 req->work_req.done = NULL; in uv__iou_get_sqe()
1621 goto done; in uv__hrtime()
1625 goto done; in uv__hrtime()
1634 done: in uv__hrtime()
/libuv/m4/
H A Dlibuv-check-flags.m484 done
139 done
327 done
H A Dax_pthread.m4309 done
393 done
412 done
/libuv/docs/src/guide/
H A Dutilities.rst80 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 Dbasics.rst39 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 Dthreads.rst12 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 Dloop.rst127 there are no pending callbacks. Returns zero when done (no active handles
131 pending callbacks. Returns zero if done (no active handles
H A Dtcp.rst155 This is done to match the behavior of Linux systems.

Completed in 65 milliseconds

12