Searched refs:copy_flags (Results 1 – 3 of 3) sorted by relevance
/systemd-251/src/shared/ |
D | copy.h | 33 int copy_file_fd_full(const char *from, int to, CopyFlags copy_flags, copy_progress_bytes_t progres… 34 static inline int copy_file_fd(const char *from, int to, CopyFlags copy_flags) { in copy_file_fd() argument 35 return copy_file_fd_full(from, to, copy_flags, NULL, NULL); in copy_file_fd() 38 …s, mode_t mode, unsigned chattr_flags, unsigned chattr_mask, CopyFlags copy_flags, copy_progress_b… 39 …, int open_flags, mode_t mode, unsigned chattr_flags, unsigned chattr_mask, CopyFlags copy_flags) { in copy_file() argument 40 …return copy_file_full(from, to, open_flags, mode, chattr_flags, chattr_mask, copy_flags, NULL, NUL… in copy_file() 43 …o, mode_t mode, unsigned chattr_flags, unsigned chattr_mask, CopyFlags copy_flags, copy_progress_b… 44 …, const char *to, mode_t mode, unsigned chattr_flags, unsigned chattr_mask, CopyFlags copy_flags) { in copy_file_atomic() argument 45 … return copy_file_atomic_full(from, to, mode, chattr_flags, chattr_mask, copy_flags, NULL, NULL); in copy_file_atomic() 48 …fdt, const char *to, uid_t override_uid, gid_t override_gid, CopyFlags copy_flags, copy_progress_p… [all …]
|
D | copy.c | 93 static int look_for_signals(CopyFlags copy_flags) { in look_for_signals() argument 96 if ((copy_flags & (COPY_SIGINT|COPY_SIGTERM)) == 0) in look_for_signals() 99 r = pop_pending_signal(copy_flags & COPY_SIGINT ? SIGINT : 0, in look_for_signals() 100 copy_flags & COPY_SIGTERM ? SIGTERM : 0); in look_for_signals() 154 CopyFlags copy_flags, in copy_bytes_full() argument 182 if ((copy_flags & COPY_REFLINK)) { in copy_bytes_full() 239 r = look_for_signals(copy_flags); in copy_bytes_full() 246 if (copy_flags & COPY_HOLES) { in copy_bytes_full() 471 CopyFlags copy_flags) { in fd_copy_symlink() argument 484 if (copy_flags & COPY_MAC_CREATE) { in fd_copy_symlink() [all …]
|
/systemd-251/src/machine/ |
D | machine-dbus.c | 909 CopyFlags copy_flags = COPY_REFLINK|COPY_MERGE|COPY_HARDLINKS; in bus_machine_method_copy() local 1020 …fd, host_basename, uid_shift == 0 ? UID_INVALID : 0, uid_shift == 0 ? GID_INVALID : 0, copy_flags); in bus_machine_method_copy() 1022 …e, uid_shift == 0 ? UID_INVALID : uid_shift, uid_shift == 0 ? GID_INVALID : uid_shift, copy_flags); in bus_machine_method_copy()
|