Searched refs:merge (Results 1 - 2 of 2) sorted by relevance

/systemd/src/basic/
H A Dcopy.h30 int copy_tree(const char *from, const char *to, bool merge);
31 int copy_tree_at(int fdf, const char *from, int fdt, const char *to, bool merge);
32 int copy_directory_fd(int dirfd, const char *to, bool merge);
H A Dcopy.c254 bool merge) {
278 else if (errno == EEXIST && merge)
323 q = fd_copy_directory(dirfd(d), de->d_name, &buf, fdt, de->d_name, original_device, merge);
333 if (q == -EEXIST && merge)
343 int copy_tree_at(int fdf, const char *from, int fdt, const char *to, bool merge) { argument
355 return fd_copy_directory(fdf, from, &st, fdt, to, st.st_dev, merge);
366 int copy_tree(const char *from, const char *to, bool merge) { argument
367 return copy_tree_at(AT_FDCWD, from, AT_FDCWD, to, merge);
370 int copy_directory_fd(int dirfd, const char *to, bool merge) { argument
383 return fd_copy_directory(dirfd, NULL, &st, AT_FDCWD, to, st.st_dev, merge);
247 fd_copy_directory( int df, const char *from, const struct stat *st, int dt, const char *to, dev_t original_device, bool merge) argument
[all...]

Completed in 2715 milliseconds