Home
last modified time | relevance | path

Searched refs:uv_fs_read (Results 1 – 14 of 14) sorted by relevance

/netbsd-src/external/mit/libuv/dist/docs/code/idle-compute/
H A Dmain.c26 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 Dtest-fs.c436 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 Dtest-fs-open-flags.c187 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 Dtest-eintr-handling.c79 nread = uv_fs_read(loop, &read_req, pipe_fds[0], &iov, 1, -1, NULL); in TEST_IMPL()
H A Dtest-pipe-set-non-blocking.c44 uv_errno = uv_fs_read(NULL, &req, ctx->fd, bufs, 1, -1, NULL); in thread_main()
H A Dtest-spawn.c348 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 Dtest-threadpool-cancel.c308 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 Dmain.c21 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 Dfs.rst183 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 Dfilesystem.rst129 …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 Duv.h1361 UV_EXTERN int uv_fs_read(uv_loop_t* loop,
/netbsd-src/external/mit/libuv/dist/src/unix/
H A Dfs.c1997 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 Dfs.c2913 int uv_fs_read(uv_loop_t* loop, in uv_fs_read() function
/netbsd-src/external/mit/libuv/dist/
H A DChangeLog295 * 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)