Lines Matching refs:copy_options
174 void __copy(const path& from, const path& to, copy_options options, in __copy()
178 (copy_options::create_symlinks | copy_options::skip_symlinks)); in __copy()
181 copy_options::copy_symlinks); in __copy()
209 if (bool(copy_options::skip_symlinks & options)) { in __copy()
220 if (bool(copy_options::directories_only & options)) { in __copy()
223 else if (bool(copy_options::create_symlinks & options)) { in __copy()
226 else if (bool(copy_options::create_hard_links & options)) { in __copy()
236 else if (is_directory(f) && bool(copy_options::create_symlinks & options)) { in __copy()
239 else if (is_directory(f) && (bool(copy_options::recursive & options) || in __copy()
240 copy_options::none == options)) { in __copy()
254 options | copy_options::__in_recursive_copy, ec); in __copy()
261 bool __copy_file(const path& from, const path& to, copy_options options, in __copy_file()
286 if (to_exists && bool(copy_options::skip_existing & options)) { in __copy_file()
289 else if (to_exists && bool(copy_options::update_existing & options)) { in __copy_file()
299 else if (!to_exists || bool(copy_options::overwrite_existing & options)) { in __copy_file()