Lines Matching refs:copy_options
730 void __copy(const path& from, const path& to, copy_options options, in __copy()
735 options & (copy_options::create_symlinks | copy_options::skip_symlinks)); in __copy()
737 const bool sym_status2 = bool(options & copy_options::copy_symlinks); in __copy()
764 if (bool(copy_options::skip_symlinks & options)) { in __copy()
773 if (bool(copy_options::directories_only & options)) { in __copy()
775 } else if (bool(copy_options::create_symlinks & options)) { in __copy()
777 } else if (bool(copy_options::create_hard_links & options)) { in __copy()
785 } else if (is_directory(f) && bool(copy_options::create_symlinks & options)) { in __copy()
787 } else if (is_directory(f) && (bool(copy_options::recursive & options) || in __copy()
788 copy_options::none == options)) { in __copy()
808 options | copy_options::__in_recursive_copy, ec); in __copy()
897 bool __copy_file(const path& from, const path& to, copy_options options, in __copy_file()
916 const bool skip_existing = bool(copy_options::skip_existing & options); in __copy_file()
917 const bool update_existing = bool(copy_options::update_existing & options); in __copy_file()
919 bool(copy_options::overwrite_existing & options); in __copy_file()