Home
last modified time | relevance | path

Searched refs:__copy_file (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/include/__filesystem/
H A Doperations.h39 __copy_file(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()
84 return __copy_file(__from, __to, __opt); in copy_file()
88 return __copy_file(__from, __to, __opt, &__ec); in copy_file()
/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Doperations.cpp169 __copy_file(from, to / from.filename(), options, ec); in __copy()
171 __copy_file(from, to, options, ec); in __copy()
380 bool __copy_file(const path& from, const path& to, copy_options options, error_code* ec) { in __copy_file() function