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 | 927 sqe->addr2 = (uintptr_t) req->new_path; in uv__iou_fs_link() 994 sqe->addr2 = (uintptr_t) req->new_path; in uv__iou_fs_rename() 1018 sqe->addr2 = (uintptr_t) req->new_path; in uv__iou_fs_symlink()
|
/libuv/src/win/ |
H A D | fs.c | 323 const char* new_path, const int copy_path) { in fs__capture_path() argument 332 assert(new_path == NULL || path != NULL); in fs__capture_path() 346 if (new_path != NULL) { in fs__capture_path() 376 if (new_path != NULL) { in fs__capture_path() 2693 const WCHAR* new_path) { in fs__create_junction() argument 2810 if (!CreateDirectoryW(new_path, NULL)) { in fs__create_junction() 2817 handle = CreateFileW(new_path, in fs__create_junction() 2858 RemoveDirectoryW(new_path); in fs__create_junction() 3439 const char* new_path, uv_fs_cb cb) { in uv_fs_link() argument 3578 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 | 365 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 | 1505 const char* new_path, 1555 const char* new_path, 1612 const char* new_path, 1630 const char* new_path,
|
/libuv/test/ |
H A D | test-fs.c | 3915 ASSERT_NULL(write_req.new_path); in TEST_IMPL()
|
Completed in 47 milliseconds