Searched refs:new_path (Results 1 – 8 of 8) sorted by relevance
/libuv/src/unix/ |
H A D | fs.c | 123 req->new_path = new_path; \ 134 memcpy((void*) req->new_path, new_path, new_path_len); \ 1280 req->new_path, in uv__fs_copyfile() 1728 X(LINK, link(req->path, req->new_path)); in uv__fs_work() 1740 X(RENAME, rename(req->path, req->new_path)); in uv__fs_work() 1745 X(SYMLINK, symlink(req->path, req->new_path)); in uv__fs_work() 1965 const char* new_path, in uv_fs_link() argument 2137 const char* new_path, in uv_fs_rename() argument 2184 const char* new_path, in uv_fs_symlink() argument 2270 req->new_path = NULL; in uv_fs_req_cleanup() [all …]
|
H A D | linux.c | 926 sqe->addr2 = (uintptr_t) req->new_path; in uv__iou_fs_link() 993 sqe->addr2 = (uintptr_t) req->new_path; in uv__iou_fs_rename() 1017 sqe->addr2 = (uintptr_t) req->new_path; in uv__iou_fs_symlink()
|
/libuv/src/win/ |
H A D | fs.c | 310 const char* new_path, const int copy_path) { in fs__capture_path() argument 319 assert(new_path == NULL || path != NULL); in fs__capture_path() 333 if (new_path != NULL) { in fs__capture_path() 363 if (new_path != NULL) { in fs__capture_path() 2504 const WCHAR* new_path) { in fs__create_junction() argument 2621 if (!CreateDirectoryW(new_path, NULL)) { in fs__create_junction() 2628 handle = CreateFileW(new_path, in fs__create_junction() 2669 RemoveDirectoryW(new_path); in fs__create_junction() 3250 const char* new_path, uv_fs_cb cb) { in uv_fs_link() argument 3389 const char* new_path, uv_fs_cb cb) { in uv_fs_rename() argument [all …]
|
/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… 144 …int uv_fs_rename(uv_loop_t* loop, uv_fs_t* req, const char* path, const char* new_path, uv_fs_cb c… 155 …int uv_fs_link(uv_loop_t* loop, uv_fs_t* req, const char* path, const char* new_path, uv_fs_cb cb); 156 …int uv_fs_symlink(uv_loop_t* loop, uv_fs_t* req, const char* path, const char* new_path, int flags…
|
/libuv/include/uv/ |
H A D | unix.h | 362 const char *new_path; \
|
/libuv/docs/src/ |
H A D | fs.rst | 362 …nt uv_fs_rename(uv_loop_t* loop, uv_fs_t* req, const char* path, const char* new_path, uv_fs_cb cb) 382 …s_copyfile(uv_loop_t* loop, uv_fs_t* req, const char* path, const char* new_path, int flags, uv_fs… 384 Copies a file from `path` to `new_path`. Supported `flags` are described below. 443 … int uv_fs_link(uv_loop_t* loop, uv_fs_t* req, const char* path, const char* new_path, uv_fs_cb cb) 447 …fs_symlink(uv_loop_t* loop, uv_fs_t* req, const char* path, const char* new_path, int flags, uv_fs…
|
/libuv/include/ |
H A D | uv.h | 1499 const char* new_path, 1549 const char* new_path, 1606 const char* new_path, 1624 const char* new_path,
|
/libuv/test/ |
H A D | test-fs.c | 3915 ASSERT_NULL(write_req.new_path); in TEST_IMPL()
|
Completed in 44 milliseconds