Searched refs:copy_options (Results 1 – 13 of 13) 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); 78 return __copy_file(__from, __to, copy_options::none); in copy_file() 81 return __copy_file(__from, __to, copy_options::none, &__ec); in copy_file() 83 inline _LIBCPP_HIDE_FROM_ABI bool copy_file(const path& __from, const path& __to, copy_options __op… in copy_file() 87 copy_file(const path& __from, const path& __to, copy_options __opt, error_code& __ec) { in copy_file() 95 __copy(__from, __to, copy_options::none); in copy() 98 __copy(__from, __to, copy_options::none, &__ec); in copy() 100 inline _LIBCPP_HIDE_FROM_ABI void copy(const path& __from, const path& __to, copy_options __opt) { in copy() 103 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 | 127 void __copy(const path& from, const path& to, copy_options options, error_code* ec) { in __copy() 130 …const bool sym_status = bool(options & (copy_options::create_symlinks | copy_options::skip_symlink… in __copy() 132 const bool sym_status2 = bool(options & copy_options::copy_symlinks); in __copy() 153 if (bool(copy_options::skip_symlinks & options)) { in __copy() 162 if (bool(copy_options::directories_only & options)) { in __copy() 164 } else if (bool(copy_options::create_symlinks & options)) { in __copy() 166 } else if (bool(copy_options::create_hard_links & options)) { in __copy() 174 } else if (is_directory(f) && bool(copy_options::create_symlinks & options)) { in __copy() 176 …} else if (is_directory(f) && (bool(copy_options::recursive & options) || copy_options::none == op… in __copy() 190 … __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, 542 # include <__filesystem/copy_options.h>
|
| H A D | module.modulemap.in | 1260 module copy_options { 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 | 3514 SYMBOL(copy_options, std::filesystem::, <filesystem>)
|
| /freebsd/contrib/llvm-project/libcxx/modules/std/ |
| H A D | filesystem.cppm | |
| H A D | filesystem.inc | 43 using std::filesystem::copy_options;
|
| /freebsd/lib/libc++/ |
| H A D | module.modulemap | 1260 module copy_options { header "__filesystem/copy_options.h" }
|
| H A D | libcxx.imp | 349 { include: [ "<__filesystem/copy_options.h>", "private", "<filesystem>", "public" ] },
|
| H A D | Makefile | 1484 FS_HEADERS+= copy_options.h
|
| /freebsd/contrib/llvm-project/libcxx/include/__cxx03/ |
| H A D | module.modulemap | 1252 …d_private_filesystem_copy_options [system] { header "__filesystem/copy_options.h" }
|