Searched refs:on_read (Results 1 – 8 of 8) sorted by relevance
/libuv/docs/code/uvcat/ |
H A D | main.c | 6 void on_read(uv_fs_t *req); 21 uv_fs_read(uv_default_loop(), &read_req, open_req.result, &iov, 1, -1, on_read); in on_write() 25 void on_read(uv_fs_t *req) { in on_read() function 47 &iov, 1, -1, on_read); in on_open()
|
/libuv/docs/code/dns/ |
H A D | main.c | 13 void on_read(uv_stream_t *client, ssize_t nread, const uv_buf_t *buf) { in on_read() function 39 uv_read_start((uv_stream_t*) req->handle, alloc_buffer, on_read); in on_connect()
|
/libuv/test/ |
H A D | benchmark-spawn.c | 91 static void on_read(uv_stream_t* pipe, ssize_t nread, const uv_buf_t* buf) { in on_read() function 132 r = uv_read_start((uv_stream_t*) &out, on_alloc, on_read); in spawn()
|
H A D | test-spawn.c | 132 static void on_read(uv_stream_t* tcp, ssize_t nread, const uv_buf_t* buf) { in on_read() function 144 on_read(tcp, nread, buf); in on_read_once() 300 r = uv_read_start((uv_stream_t*) &out, on_alloc, on_read); in TEST_IMPL() 611 r = uv_read_start((uv_stream_t*) &out, on_alloc, on_read); in TEST_IMPL() 645 r = uv_read_start((uv_stream_t*) &pipe, on_alloc, on_read); in TEST_IMPL() 809 r = uv_read_start((uv_stream_t*) &out, on_alloc, on_read); in TEST_IMPL() 891 r = uv_read_start((uv_stream_t*) &out, on_alloc, on_read); in TEST_IMPL() 894 r = uv_read_start((uv_stream_t*) &err, on_alloc, on_read); in TEST_IMPL() 945 r = uv_read_start((uv_stream_t*) &out, on_alloc, on_read); in TEST_IMPL() 992 r = uv_read_start((uv_stream_t*) &out, on_alloc, on_read); in TEST_IMPL() [all …]
|
H A D | test-stdio-over-pipes.c | 97 static void on_read(uv_stream_t* pipe, ssize_t nread, const uv_buf_t* rdbuf) { in on_read() function 145 r = uv_read_start((uv_stream_t*) &out, on_alloc, on_read); in test_stdio_over_pipes()
|
H A D | test-ipc.c | 143 static void on_read(uv_stream_t* handle, in on_read() function 436 int r = run_ipc_test("ipc_helper_listen_before_write", on_read); in TEST_IMPL() 449 int r = run_ipc_test("ipc_helper_listen_after_write", on_read); in TEST_IMPL()
|
/libuv/docs/code/udp-dhcp/ |
H A D | main.c | 17 void on_read(uv_udp_t *req, ssize_t nread, const uv_buf_t *buf, const struct sockaddr *addr, unsign… in on_read() function 112 uv_udp_recv_start(&recv_socket, alloc_buffer, on_read); in main()
|
/libuv/docs/src/ |
H A D | migration_010_100.rst | 154 void on_read(uv_stream_t* handle, 172 void on_read(uv_stream_t* handle, 196 void on_read(uv_pipe_t* pipe, 209 void on_read(uv_stream_t* handle,
|
Completed in 15 milliseconds