Lines Matching refs:__from
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);
66 _LIBCPP_EXPORTED_FROM_ABI void __rename(const path& __from, const path& __to, error_code* __ec = nu…
74 inline _LIBCPP_HIDE_FROM_ABI bool copy_file(const path& __from, const path& __to) { in copy_file() argument
75 return __copy_file(__from, __to, copy_options::none); in copy_file()
77 inline _LIBCPP_HIDE_FROM_ABI bool copy_file(const path& __from, const path& __to, error_code& __ec)… in copy_file() argument
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() argument
81 return __copy_file(__from, __to, __opt); in copy_file()
84 copy_file(const path& __from, const path& __to, copy_options __opt, error_code& __ec) { in copy_file() argument
85 return __copy_file(__from, __to, __opt, &__ec); in copy_file()
87 …_LIBCPP_HIDE_FROM_ABI void copy_symlink(const path& __from, const path& __to) { __copy_symlink(__f… in copy_symlink() argument
88 inline _LIBCPP_HIDE_FROM_ABI void copy_symlink(const path& __from, const path& __to, error_code& __… in copy_symlink() argument
89 __copy_symlink(__from, __to, &__ec); in copy_symlink()
91 inline _LIBCPP_HIDE_FROM_ABI void copy(const path& __from, const path& __to) { in copy() argument
92 __copy(__from, __to, copy_options::none); in copy()
94 inline _LIBCPP_HIDE_FROM_ABI void copy(const path& __from, const path& __to, error_code& __ec) { in copy() argument
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() argument
98 __copy(__from, __to, __opt); in copy()
100 inline _LIBCPP_HIDE_FROM_ABI void copy(const path& __from, const path& __to, copy_options __opt, er… in copy() argument
101 __copy(__from, __to, __opt, &__ec); in copy()
276 …line _LIBCPP_HIDE_FROM_ABI void rename(const path& __from, const path& __to) { return __rename(__f… in rename() argument
277 inline _LIBCPP_HIDE_FROM_ABI void rename(const path& __from, const path& __to, error_code& __ec) no… in rename() argument
278 return __rename(__from, __to, &__ec); in rename()