/libuv/src/unix/ |
H A D | darwin-proctitle.c | 91 goto out; in uv__set_process_title() 106 goto out; in uv__set_process_title() 115 goto out; in uv__set_process_title() 122 goto out; in uv__set_process_title() 129 goto out; in uv__set_process_title() 135 goto out; in uv__set_process_title() 142 goto out; in uv__set_process_title() 149 goto out; in uv__set_process_title() 157 goto out; in uv__set_process_title() 169 goto out; in uv__set_process_title() [all …]
|
H A D | openbsd.c | 77 goto out; in uv_exepath() 87 goto out; in uv_exepath() 94 goto out; in uv_exepath() 106 out: in uv_exepath()
|
H A D | tcp.c | 90 goto out; in maybe_new_socket() 97 goto out; in maybe_new_socket() 100 goto out; /* Already bound to a port. */ in maybe_new_socket() 106 out: in maybe_new_socket() 292 goto out; in uv__tcp_connect() 335 out: in uv__tcp_connect()
|
H A D | fs.c | 895 goto out; in uv__fs_sendfile_emul() 906 goto out; in uv__fs_sendfile_emul() 943 out: in uv__fs_sendfile_emul() 1269 goto out; in uv__fs_copyfile() 1288 goto out; in uv__fs_copyfile() 1297 goto out; in uv__fs_copyfile() 1303 goto out; in uv__fs_copyfile() 1343 goto out; in uv__fs_copyfile() 1369 goto out; in uv__fs_copyfile() 1390 goto out; in uv__fs_copyfile() [all …]
|
H A D | fsevents.c | 512 goto out; in uv__fsevents_global_init() 525 goto out; in uv__fsevents_global_init() 532 goto out; in uv__fsevents_global_init() 539 goto out; \ in uv__fsevents_global_init() 563 out: in uv__fsevents_global_init()
|
H A D | pipe.c | 290 goto out; in uv_pipe_connect2() 318 goto out; in uv_pipe_connect2() 331 out: in uv_pipe_connect2()
|
H A D | thread.c | 143 void* (*out)(void*); in uv_thread_create_ex() member 172 err = pthread_create(tid, attr, f.out, arg); in uv_thread_create_ex()
|
/libuv/src/ |
H A D | thread-common.c | 58 b->out = 0; in uv_barrier_init() 101 while (b->out != 0) in uv_barrier_wait() 106 b->out = b->threshold; in uv_barrier_wait() 114 last = (--b->out == 0); in uv_barrier_wait() 135 while (b->out != 0) in uv_barrier_destroy()
|
H A D | fs-poll.c | 195 goto out; in poll_cb() 205 goto out; in poll_cb() 217 out: in poll_cb()
|
/libuv/test/ |
H A D | run-tests.c | 162 const char out[] = "fourth stdio!\n"; in maybe_run_test() local 167 WriteFile((HANDLE) _get_osfhandle(3), out, sizeof(out) - 1, &bytes, NULL); in maybe_run_test() 172 r = write(3, out, sizeof(out) - 1); in maybe_run_test()
|
H A D | benchmark-spawn.c | 37 static uv_pipe_t out; variable 117 uv_pipe_init(loop, &out, 0); in spawn() 123 options.stdio[1].data.stream = (uv_stream_t*)&out; in spawn() 132 r = uv_read_start((uv_stream_t*) &out, on_alloc, on_read); in spawn()
|
H A D | runner.c | 196 goto out; in run_test() 220 goto out; in run_test() 233 goto out; in run_test() 259 goto out; in run_test() 268 goto out; in run_test() 276 out: in run_test()
|
H A D | test-spawn.c | 285 uv_pipe_t out; in TEST_IMPL() local 290 uv_pipe_init(uv_default_loop(), &out, 0); in TEST_IMPL() 585 uv_pipe_t out; in TEST_IMPL() local 594 uv_pipe_init(uv_default_loop(), &out, 0); in TEST_IMPL() 788 uv_pipe_t out; in TEST_IMPL() local 793 uv_pipe_init(uv_default_loop(), &out, 0); in TEST_IMPL() 857 uv_pipe_t in, out, err; in TEST_IMPL() local 916 uv_pipe_t in, out; in TEST_IMPL() local 963 uv_pipe_t in, out; in TEST_IMPL() local 1097 uv_pipe_t out; in TEST_IMPL() local [all …]
|
H A D | test-stdio-over-pipes.c | 38 static uv_pipe_t out; variable 59 uv_close((uv_handle_t*)&out, close_cb); in exit_cb() 128 uv_pipe_init(loop, &out, 0); in test_stdio_over_pipes() 137 options.stdio[1].data.stream = (uv_stream_t*) &out; in test_stdio_over_pipes() 145 r = uv_read_start((uv_stream_t*) &out, on_alloc, on_read); in test_stdio_over_pipes()
|
/libuv/ |
H A D | CONTRIBUTING.md | 9 Fork the project [on GitHub](https://github.com/libuv/libuv) and check out 123 Check the output of `git log --oneline files_that_you_changed` to find out 149 Check README.md file to find out how to run the test suite and make sure that 159 the 'Pull Request' button and fill out the form. 164 not send out notifications when you add commits.
|
H A D | SUPPORTED_PLATFORMS.md | 51 left out.
|
H A D | README.md | 112 These resources are not handled by libuv maintainers and might be out of 244 If the version is out of date, please [create an issue or pull request](https://github.com/conan-io…
|
H A D | ChangeLog | 717 * barrier: wait for prior out before next in (Jameson Nash) 1023 * doc: checkout -> check out (wyckster) 3112 * zos, test: flush out the oob data in callback (jBarz) 3287 * unix: factor out reusable POSIX hrtime impl (Brad King) 3299 * unix: factor out getifaddrs result filter (Brad King) 3301 * unix: factor out reusable BSD ifaddrs impl (Brad King) 3409 * unix: factor out reusable no-proctitle impl (Brad King) 3411 * test: factor out fsevents skip explanation (Brad King) 3415 * unix: factor out reusable no-fsevents impl (Brad King) 3454 * unix: move function call out of assert (jBarz) [all …]
|
/libuv/src/win/ |
H A D | tty.c | 706 goto out; in uv_process_tty_read_raw_req() 717 goto out; in uv_process_tty_read_raw_req() 727 goto out; in uv_process_tty_read_raw_req() 748 goto out; in uv_process_tty_read_raw_req() 853 goto out; in uv_process_tty_read_raw_req() 902 goto out; in uv_process_tty_read_raw_req() 935 out: in uv_process_tty_read_raw_req()
|
/libuv/docs/src/ |
H A D | errors.rst | 76 out of memory 300 connection timed out
|
H A D | migration_010_100.rst | 221 Extracting the file descriptor out of a handle
|
/libuv/docs/src/guide/ |
H A D | basics.rst | 29 * A timer has timed out 85 With the basics out of the way, let's write our first libuv program. It does 94 event loop has to be told to watch out for events using the various API
|
H A D | processes.rst | 39 initialize it to null out all unused fields:: 366 to read out. If your program could deal with different types of handles, 416 Thanks to Kyle for `pointing out`_ that ``uv_write2()`` requires a non-empty 419 .. _pointing out: https://github.com/nikhilm/uvbook/issues/56
|
/libuv/include/uv/ |
H A D | unix.h | 150 unsigned out; member
|
H A D | win.h | 283 unsigned out; member
|