• Home
  • Raw
  • Download

Lines Matching refs:__to

1387 void __copy(const path& __from, const path& __to, copy_options __opt,
1390 bool __copy_file(const path& __from, const path& __to, copy_options __opt,
1403 void __create_directory_symlink(const path& __to, const path& __new_symlink,
1406 void __create_hard_link(const path& __to, const path& __new_hard_link,
1409 void __create_symlink(const path& __to, const path& __new_symlink,
1489 const path& __to) {
1490 __copy(__from, __to, copy_options::none);
1493 inline _LIBCPP_INLINE_VISIBILITY void copy(const path& __from, const path& __to,
1495 __copy(__from, __to, copy_options::none, &__ec);
1498 inline _LIBCPP_INLINE_VISIBILITY void copy(const path& __from, const path& __to,
1500 __copy(__from, __to, __opt);
1503 inline _LIBCPP_INLINE_VISIBILITY void copy(const path& __from, const path& __to,
1506 __copy(__from, __to, __opt, &__ec);
1510 const path& __to) {
1511 return __copy_file(__from, __to, copy_options::none);
1515 copy_file(const path& __from, const path& __to, error_code& __ec) {
1516 return __copy_file(__from, __to, copy_options::none, &__ec);
1520 copy_file(const path& __from, const path& __to, copy_options __opt) {
1521 return __copy_file(__from, __to, __opt);
1525 const path& __to,
1528 return __copy_file(__from, __to, __opt, &__ec);
1571 create_directory_symlink(const path& __to, const path& __new) {
1572 __create_directory_symlink(__to, __new);
1576 create_directory_symlink(const path& __to, const path& __new,
1578 __create_directory_symlink(__to, __new, &__ec);
1581 inline _LIBCPP_INLINE_VISIBILITY void create_hard_link(const path& __to,
1583 __create_hard_link(__to, __new);
1587 create_hard_link(const path& __to, const path& __new,
1589 __create_hard_link(__to, __new, &__ec);
1592 inline _LIBCPP_INLINE_VISIBILITY void create_symlink(const path& __to,
1594 __create_symlink(__to, __new);
1598 create_symlink(const path& __to, const path& __new, error_code& __ec) noexcept {
1599 return __create_symlink(__to, __new, &__ec);
1876 const path& __to) {
1877 return __rename(__from, __to);
1881 rename(const path& __from, const path& __to, error_code& __ec) noexcept {
1882 return __rename(__from, __to, &__ec);