Searched refs:uv_fs_copyfile (Results 1 – 8 of 8) sorted by relevance
/libuv/test/ |
H A D | test-fs-copyfile.c | 114 r = uv_fs_copyfile(NULL, &req, src, dst, -1, NULL); in TEST_IMPL() 121 r = uv_fs_copyfile(NULL, &req, src, dst, 0, NULL); in TEST_IMPL() 132 r = uv_fs_copyfile(NULL, &req, src, src, 0, NULL); in TEST_IMPL() 144 r = uv_fs_copyfile(NULL, &req, fixture, dst, 0, NULL); in TEST_IMPL() 151 r = uv_fs_copyfile(NULL, &req, src, dst, 0, NULL); in TEST_IMPL() 156 r = uv_fs_copyfile(NULL, &req, fixture, dst, 0, NULL); in TEST_IMPL() 171 r = uv_fs_copyfile(NULL, &req, src, dst, 0, NULL); in TEST_IMPL() 178 r = uv_fs_copyfile(NULL, &req, src, dst, 0, NULL); in TEST_IMPL() 185 r = uv_fs_copyfile(loop, &req, fixture, dst, 0, handle_result); in TEST_IMPL() 196 r = uv_fs_copyfile(loop, &req, fixture, dst, -1, fail_cb); in TEST_IMPL() [all …]
|
H A D | test-fs.c | 4293 r = uv_fs_copyfile(NULL, NULL, NULL, NULL, 0, NULL); in TEST_IMPL()
|
/libuv/docs/src/ |
H A D | fs.rst | 382 .. c:function:: int uv_fs_copyfile(uv_loop_t* loop, uv_fs_t* req, const char* path, const char* new… 386 - `UV_FS_COPYFILE_EXCL`: If present, `uv_fs_copyfile()` will fail with 389 - `UV_FS_COPYFILE_FICLONE`: If present, `uv_fs_copyfile()` will attempt to 394 - `UV_FS_COPYFILE_FICLONE_FORCE`: If present, `uv_fs_copyfile()` will
|
/libuv/docs/src/guide/ |
H A D | filesystem.rst | 132 …int uv_fs_copyfile(uv_loop_t* loop, uv_fs_t* req, const char* path, const char* new_path, int flag…
|
/libuv/ |
H A D | ChangeLog | 115 * linux,darwin: make `uv_fs_copyfile` behaves like `cp -r` (Juan José Arboleda) 1426 * linux: use copy_file_range for uv_fs_copyfile when possible (Carter Li) 1467 * unix: handle src, dest same in uv_fs_copyfile() (cjihrig) 1983 * unix: update uv_fs_copyfile() fallback logic (Stefan Bender) 2153 * fs: fix uv_fs_copyfile if same src and dst (Santiago Gimeno) 2691 * unix: set errno in uv_fs_copyfile() (cjihrig) 3043 * unix: use fchmod() in uv_fs_copyfile() (cjihrig) 3047 * unix: truncate destination in uv_fs_copyfile() (Nick Logan) 3114 * unix,win: check for bad flags in uv_fs_copyfile() (cjihrig) 3132 * unix: handle partial sends in uv_fs_copyfile() (A. Hauptmann) [all …]
|
/libuv/include/ |
H A D | uv.h | 1496 UV_EXTERN int uv_fs_copyfile(uv_loop_t* loop,
|
/libuv/src/unix/ |
H A D | fs.c | 2288 int uv_fs_copyfile(uv_loop_t* loop, in uv_fs_copyfile() function
|
/libuv/src/win/ |
H A D | fs.c | 3426 int uv_fs_copyfile(uv_loop_t* loop, in uv_fs_copyfile() function
|
Completed in 48 milliseconds