Lines Matching refs:__to

1439 void __copy(const path& __from, const path& __to, copy_options __opt,
1442 bool __copy_file(const path& __from, const path& __to, copy_options __opt,
1455 void __create_directory_symlink(const path& __to, const path& __new_symlink,
1458 void __create_hard_link(const path& __to, const path& __new_hard_link,
1461 void __create_symlink(const path& __to, const path& __new_symlink,
1541 const path& __to) {
1542 __copy(__from, __to, copy_options::none);
1545 inline _LIBCPP_INLINE_VISIBILITY void copy(const path& __from, const path& __to,
1547 __copy(__from, __to, copy_options::none, &__ec);
1550 inline _LIBCPP_INLINE_VISIBILITY void copy(const path& __from, const path& __to,
1552 __copy(__from, __to, __opt);
1555 inline _LIBCPP_INLINE_VISIBILITY void copy(const path& __from, const path& __to,
1558 __copy(__from, __to, __opt, &__ec);
1562 const path& __to) {
1563 return __copy_file(__from, __to, copy_options::none);
1567 copy_file(const path& __from, const path& __to, error_code& __ec) {
1568 return __copy_file(__from, __to, copy_options::none, &__ec);
1572 copy_file(const path& __from, const path& __to, copy_options __opt) {
1573 return __copy_file(__from, __to, __opt);
1577 const path& __to,
1580 return __copy_file(__from, __to, __opt, &__ec);
1623 create_directory_symlink(const path& __to, const path& __new) {
1624 __create_directory_symlink(__to, __new);
1628 create_directory_symlink(const path& __to, const path& __new,
1630 __create_directory_symlink(__to, __new, &__ec);
1633 inline _LIBCPP_INLINE_VISIBILITY void create_hard_link(const path& __to,
1635 __create_hard_link(__to, __new);
1639 create_hard_link(const path& __to, const path& __new,
1641 __create_hard_link(__to, __new, &__ec);
1644 inline _LIBCPP_INLINE_VISIBILITY void create_symlink(const path& __to,
1646 __create_symlink(__to, __new);
1650 create_symlink(const path& __to, const path& __new, error_code& __ec) noexcept {
1651 return __create_symlink(__to, __new, &__ec);
1928 const path& __to) {
1929 return __rename(__from, __to);
1933 rename(const path& __from, const path& __to, error_code& __ec) noexcept {
1934 return __rename(__from, __to, &__ec);