/libuv/test/ |
H A D | test-fs.c | 1833 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 D | test-fs-open-flags.c | 90 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 D | test-metrics.c | 217 ASSERT_OK(uv_fs_open(uv_default_loop(), in prepare_cb() 331 fd = uv_fs_open(NULL, in TEST_IMPL()
|
H A D | test-fork.c | 425 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 D | test-fs-readdir.c | 360 r = uv_fs_open(uv_default_loop(), in TEST_IMPL() 374 r = uv_fs_open(uv_default_loop(), in TEST_IMPL()
|
H A D | test-fs-copyfile.c | 83 r = uv_fs_open(NULL, &req, name, in touch_file()
|
H A D | test-spawn.c | 328 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 D | test-fs-event.c | 73 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 D | test-threadpool-cancel.c | 343 ASSERT_OK(uv_fs_open(loop, reqs + n++, "/", 0, 0, fs_cb)); in TEST_IMPL()
|
/libuv/docs/code/uvcat/ |
H A D | main.c | 55 uv_fs_open(uv_default_loop(), &open_req, argv[1], O_RDONLY, 0, on_open); in main()
|
/libuv/docs/code/uvtee/ |
H A D | main.c | 71 int fd = uv_fs_open(loop, &file_req, argv[1], O_CREAT | O_RDWR, 0644, NULL); in main()
|
/libuv/docs/src/guide/ |
H A D | filesystem.rst | 33 … 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 D | fs.c | 1260 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 D | uv.h | 1454 UV_EXTERN int uv_fs_open(uv_loop_t* loop,
|
/libuv/docs/src/ |
H A D | fs.rst | 231 .. c:function:: int uv_fs_open(uv_loop_t* loop, uv_fs_t* req, const char* path, int flags, int mode…
|
/libuv/ |
H A D | ChangeLog | 4250 * 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 D | fs.c | 3020 int uv_fs_open(uv_loop_t* loop, uv_fs_t* req, const char* path, int flags, in uv_fs_open() function
|