Home
last modified time | relevance | path

Searched refs:uv_fs_open (Results 1 – 17 of 17) sorted by relevance

/libuv/test/
H A Dtest-fs.c1833 r = uv_fs_open(NULL, in TEST_IMPL()
1890 r = uv_fs_open(NULL, in TEST_IMPL()
3468 r = uv_fs_open(NULL, in fs_write_alotof_bufs()
3581 r = uv_fs_open(NULL, in fs_write_alotof_bufs_with_offset()
3686 r = uv_fs_open(loop, in TEST_IMPL()
3969 r = uv_fs_open(NULL, in TEST_IMPL()
4006 r = uv_fs_open(NULL, in TEST_IMPL()
4049 r = uv_fs_open(loop, in TEST_IMPL()
4147 r = uv_fs_open(NULL, in fs_file_pos_write()
4185 r = uv_fs_open(NULL, in fs_file_pos_append()
[all …]
H A Dtest-fs-open-flags.c90 r = uv_fs_open(NULL, &open_req, empty_file, in refresh()
104 r = uv_fs_open(NULL, &open_req, dummy_file, in refresh()
133 r = uv_fs_open(NULL, &open_req, file, flags, S_IWUSR | S_IRUSR, NULL); in openFail()
139 r = uv_fs_open(NULL, &open_req, file, flags, S_IWUSR | S_IRUSR, NULL); in openFail()
152 r = uv_fs_open(NULL, &open_req, file, flags, S_IWUSR | S_IRUSR, NULL); in refreshOpen()
181 r = uv_fs_open(NULL, &open_req, file, UV_FS_O_RDONLY, S_IWUSR | S_IRUSR, NULL); in writeExpect()
H A Dtest-metrics.c217 ASSERT_OK(uv_fs_open(uv_default_loop(), in prepare_cb()
331 fd = uv_fs_open(NULL, in TEST_IMPL()
H A Dtest-fork.c425 r = uv_fs_open(NULL, &req, name, O_WRONLY | O_CREAT, S_IWUSR | S_IRUSR, NULL); in create_file()
441 r = uv_fs_open(NULL, &req, name, O_RDWR, 0, NULL); in touch_file()
H A Dtest-fs-readdir.c360 r = uv_fs_open(uv_default_loop(), in TEST_IMPL()
374 r = uv_fs_open(uv_default_loop(), in TEST_IMPL()
H A Dtest-fs-copyfile.c83 r = uv_fs_open(NULL, &req, name, in touch_file()
H A Dtest-spawn.c328 r = uv_fs_open(NULL, &fs_req, "stdout_file", UV_FS_O_CREAT | UV_FS_O_RDWR, in TEST_IMPL()
382 r = uv_fs_open(NULL, &fs_req, "stdout_file", UV_FS_O_CREAT | UV_FS_O_RDWR, in TEST_IMPL()
440 r = uv_fs_open(NULL, in TEST_IMPL()
507 r = uv_fs_open(NULL, in TEST_IMPL()
519 r = uv_fs_open(NULL, &fs_req, "stderr_file", O_CREAT | O_RDWR, in TEST_IMPL()
1688 r = uv_fs_open(NULL, &fs_req, dev_null, UV_FS_O_RDWR, 0, NULL); in TEST_IMPL()
H A Dtest-fs-event.c73 r = uv_fs_open(NULL, &req, name, UV_FS_O_WRONLY | UV_FS_O_CREAT, in create_file()
106 r = uv_fs_open(NULL, &req, name, UV_FS_O_RDWR, 0, NULL); in touch_file()
H A Dtest-threadpool-cancel.c343 ASSERT_OK(uv_fs_open(loop, reqs + n++, "/", 0, 0, fs_cb)); in TEST_IMPL()
/libuv/docs/code/uvcat/
H A Dmain.c55 uv_fs_open(uv_default_loop(), &open_req, argv[1], O_RDONLY, 0, on_open); in main()
/libuv/docs/code/uvtee/
H A Dmain.c71 int fd = uv_fs_open(loop, &file_req, argv[1], O_CREAT | O_RDWR, 0644, NULL); in main()
/libuv/docs/src/guide/
H A Dfilesystem.rst33 … int uv_fs_open(uv_loop_t* loop, uv_fs_t* req, const char* path, int flags, int mode, uv_fs_cb cb)
63 ``uv_fs_open`` callback. If the file is successfully opened, we start reading it.
128 … int uv_fs_open(uv_loop_t* loop, uv_fs_t* req, const char* path, int flags, int mode, uv_fs_cb cb);
/libuv/src/unix/
H A Dfs.c1260 srcfd = uv_fs_open(NULL, &fs_req, req->path, O_RDONLY, 0, NULL); in uv__fs_copyfile()
1278 dstfd = uv_fs_open(NULL, in uv__fs_copyfile()
2015 int uv_fs_open(uv_loop_t* loop, in uv_fs_open() function
/libuv/include/
H A Duv.h1454 UV_EXTERN int uv_fs_open(uv_loop_t* loop,
/libuv/docs/src/
H A Dfs.rst231 .. c:function:: int uv_fs_open(uv_loop_t* loop, uv_fs_t* req, const char* path, int flags, int mode…
/libuv/
H A DChangeLog4250 * docs: add Windows specific note for uv_fs_open (Saúl Ibarra Corretgé)
4412 * unix: clean up uv_fs_open() O_CLOEXEC logic (Ben Noordhuis)
5531 * windows/fs: make uv_fs_open() report EINVAL correctly (Bert Belder)
5537 * windows/fs: make uv_fs_open() report EINVAL correctly (Bert Belder)
5652 * windows: make uv_fs_open() report EINVAL when invalid arguments are passed
5655 * windows: make uv_fs_open() report _open_osfhandle() failure correctly (Bert
/libuv/src/win/
H A Dfs.c3020 int uv_fs_open(uv_loop_t* loop, uv_fs_t* req, const char* path, int flags, in uv_fs_open() function

Completed in 83 milliseconds