/netbsd-src/external/mit/libuv/dist/docs/code/idle-compute/ |
H A D | main.c | 26 uv_fs_read(loop, &stdin_watcher, 0, &buf, 1, -1, on_type); in on_type() 40 uv_fs_read(loop, &stdin_watcher, 0, &buf, 1, -1, on_type); in main()
|
/netbsd-src/external/mit/libuv/dist/test/ |
H A D | test-fs.c | 436 r = uv_fs_read(loop, &read_req, open_req1.result, &iov, 1, -1, in open_cb() 1006 r = uv_fs_read(NULL, &read_req, open_req1.result, &iov, 1, -1, NULL); in fs_file_sync() 1035 r = uv_fs_read(NULL, &read_req, open_req1.result, &iov, 1, -1, NULL); in fs_file_sync() 1255 r = uv_fs_read(NULL, &req, open_req1.result, &iov, 1, -1, NULL); in test_sendfile() 1368 r = uv_fs_read(NULL, &req, fd, &iov, 1, -1, NULL); in TEST_IMPL() 1969 r = uv_fs_read(NULL, &req, link, &iov, 1, 0, NULL); in TEST_IMPL() 1990 r = uv_fs_read(NULL, &req, link, &iov, 1, 0, NULL); in TEST_IMPL() 2135 r = uv_fs_read(NULL, &req, link, &iov, 1, 0, NULL); in TEST_IMPL() 2197 r = uv_fs_read(NULL, &req, link, &iov, 1, 0, NULL); in TEST_IMPL() 3006 r = uv_fs_read(NULL, &read_req, open_req1.result, &iov, 1, -1, NULL); in fs_file_open_append() [all …]
|
H A D | test-fs-open-flags.c | 187 r = uv_fs_read(NULL, &read_req, open_req.result, &iov, 1, -1, NULL); in writeExpect() 232 r = uv_fs_read(NULL, &read_req, open_req.result, &iov, 1, -1, NULL); in readExpect() 252 r = uv_fs_read(NULL, &read_req, open_req.result, &iov, 1, -1, NULL); in readFail() 258 r = uv_fs_read(NULL, &read_req, open_req.result, &iov, 1, -1, NULL); in readFail()
|
H A D | test-eintr-handling.c | 79 nread = uv_fs_read(loop, &read_req, pipe_fds[0], &iov, 1, -1, NULL); in TEST_IMPL()
|
H A D | test-pipe-set-non-blocking.c | 44 uv_errno = uv_fs_read(NULL, &req, ctx->fd, bufs, 1, -1, NULL); in thread_main()
|
H A D | test-spawn.c | 348 r = uv_fs_read(NULL, &fs_req, file, &buf, 1, 0, NULL); in TEST_IMPL() 404 r = uv_fs_read(NULL, &fs_req, file, &buf, 1, 0, NULL); in TEST_IMPL() 466 r = uv_fs_read(NULL, &fs_req, file, &buf, 1, 0, NULL); in TEST_IMPL() 545 r = uv_fs_read(NULL, &fs_req, stdout_file, &buf, 1, 0, NULL); in TEST_IMPL() 557 r = uv_fs_read(NULL, &fs_req, stderr_file, &buf, 1, 0, NULL); in TEST_IMPL()
|
H A D | test-threadpool-cancel.c | 308 ASSERT(0 == uv_fs_read(loop, reqs + n++, 0, &iov, 1, 0, fs_cb)); in TEST_IMPL()
|
/netbsd-src/external/mit/libuv/dist/docs/code/uvcat/ |
H A D | main.c | 21 uv_fs_read(uv_default_loop(), &read_req, open_req.result, &iov, 1, -1, on_read); in on_write() 46 uv_fs_read(uv_default_loop(), &read_req, req->result, in on_open()
|
/netbsd-src/external/mit/libuv/dist/docs/src/ |
H A D | fs.rst | 183 as :c:func:`uv_fs_read` or :c:func:`uv_fs_write` it indicates the amount of 219 .. c:function:: int uv_fs_read(uv_loop_t* loop, uv_fs_t* req, uv_file file, const uv_buf_t bufs[], …
|
/netbsd-src/external/mit/libuv/dist/docs/src/guide/ |
H A D | filesystem.rst | 129 …int uv_fs_read(uv_loop_t* loop, uv_fs_t* req, uv_file file, const uv_buf_t bufs[], unsigned int nb…
|
/netbsd-src/external/mit/libuv/dist/include/ |
H A D | uv.h | 1361 UV_EXTERN int uv_fs_read(uv_loop_t* loop,
|
/netbsd-src/external/mit/libuv/dist/src/unix/ |
H A D | fs.c | 1997 int uv_fs_read(uv_loop_t* loop, uv_fs_t* req, in uv_fs_read() function
|
/netbsd-src/external/mit/libuv/dist/src/win/ |
H A D | fs.c | 2913 int uv_fs_read(uv_loop_t* loop, in uv_fs_read() function
|
/netbsd-src/external/mit/libuv/dist/ |
H A D | ChangeLog | 295 * win,fs: fix error code in uv_fs_read() and uv_fs_write() (Darshan Sen) 1346 * unix: make uv_fs_read() fill all buffers (Ben Noordhuis)
|