Searched refs:copy_options (Results 1 – 10 of 10) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/include/__filesystem/ |
H A D | copy_options.h | 23 enum class copy_options : unsigned short { enum 37 _LIBCPP_HIDE_FROM_ABI inline constexpr copy_options operator&(copy_options __lhs, copy_options __rh… 38 …return static_cast<copy_options>(static_cast<unsigned short>(__lhs) & static_cast<unsigned short>(… 41 _LIBCPP_HIDE_FROM_ABI inline constexpr copy_options operator|(copy_options __lhs, copy_options __rh… 42 …return static_cast<copy_options>(static_cast<unsigned short>(__lhs) | static_cast<unsigned short>(… 45 _LIBCPP_HIDE_FROM_ABI inline constexpr copy_options operator^(copy_options __lhs, copy_options __rh… 46 …return static_cast<copy_options>(static_cast<unsigned short>(__lhs) ^ static_cast<unsigned short>(… 49 _LIBCPP_HIDE_FROM_ABI inline constexpr copy_options operator~(copy_options __lhs) { 50 return static_cast<copy_options>(~static_cast<unsigned short>(__lhs)); 53 _LIBCPP_HIDE_FROM_ABI inline copy_options& operator&=(copy_options& __lhs, copy_options __rhs) { [all …]
|
H A D | operations.h | 39 __copy_file(const path& __from, const path& __to, copy_options __opt, error_code* __ec = nullptr); 43 __copy(const path& __from, const path& __to, copy_options __opt, error_code* __ec = nullptr); 75 return __copy_file(__from, __to, copy_options::none); in copy_file() 78 return __copy_file(__from, __to, copy_options::none, &__ec); in copy_file() 80 inline _LIBCPP_HIDE_FROM_ABI bool copy_file(const path& __from, const path& __to, copy_options __op… in copy_file() 84 copy_file(const path& __from, const path& __to, copy_options __opt, error_code& __ec) { in copy_file() 92 __copy(__from, __to, copy_options::none); in copy() 95 __copy(__from, __to, copy_options::none, &__ec); in copy() 97 inline _LIBCPP_HIDE_FROM_ABI void copy(const path& __from, const path& __to, copy_options __opt) { in copy() 100 inline _LIBCPP_HIDE_FROM_ABI void copy(const path& __from, const path& __to, copy_options __opt, er… in copy()
|
/freebsd/contrib/llvm-project/libcxx/src/filesystem/ |
H A D | operations.cpp | 104 void __copy(const path& from, const path& to, copy_options options, error_code* ec) { in __copy() 107 …const bool sym_status = bool(options & (copy_options::create_symlinks | copy_options::skip_symlink… in __copy() 109 const bool sym_status2 = bool(options & copy_options::copy_symlinks); in __copy() 130 if (bool(copy_options::skip_symlinks & options)) { in __copy() 139 if (bool(copy_options::directories_only & options)) { in __copy() 141 } else if (bool(copy_options::create_symlinks & options)) { in __copy() 143 } else if (bool(copy_options::create_hard_links & options)) { in __copy() 151 } else if (is_directory(f) && bool(copy_options::create_symlinks & options)) { in __copy() 153 …} else if (is_directory(f) && (bool(copy_options::recursive & options) || copy_options::none == op… in __copy() 167 … __copy(it->path(), to / it->path().filename(), options | copy_options::__in_recursive_copy, ec); in __copy() [all …]
|
/freebsd/contrib/llvm-project/libcxx/include/ |
H A D | filesystem | 366 enum class copy_options; 381 void copy(const path& from, const path& to, copy_options options); 382 void copy(const path& from, const path& to, copy_options options, 387 bool copy_file(const path& from, const path& to, copy_options option); 388 bool copy_file(const path& from, const path& to, copy_options option, 539 # include <__filesystem/copy_options.h>
|
H A D | module.modulemap | 1252 …d_private_filesystem_copy_options [system] { header "__filesystem/copy_options.h" }
|
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/ |
H A D | StdTsSymbolMap.inc | 7 SYMBOL(copy_options, std::experimental::filesystem::, <experimental/filesystem>)
|
H A D | StdSymbolMap.inc | 3431 SYMBOL(copy_options, std::filesystem::, <filesystem>)
|
/freebsd/contrib/llvm-project/libcxx/modules/std/ |
H A D | filesystem.cppm |
|
/freebsd/lib/libc++/ |
H A D | Makefile | 691 FS_HEADERS+= copy_options.h
|
H A D | libcxx.imp | 336 { include: [ "<__filesystem/copy_options.h>", "private", "<filesystem>", "public" ] },
|