Home
last modified time | relevance | path

Searched refs:hard_link_count (Results 1 – 3 of 3) sorted by relevance

/third_party/boost/boost/filesystem/
Doperations.hpp138 boost::uintmax_t hard_link_count(const path& p, system::error_code* ec=0);
419 boost::uintmax_t hard_link_count(const path& p) {return detail::hard_link_count(p);} in hard_link_count() function
422 boost::uintmax_t hard_link_count(const path& p, system::error_code& ec) BOOST_NOEXCEPT in hard_link_count() function
423 {return detail::hard_link_count(p, &ec);} in hard_link_count()
/third_party/boost/libs/filesystem/test/
Doperations_test.cpp455 BOOST_TEST(fs::hard_link_count(d1f1) == 1); in create_tree()
465 BOOST_TEST(fs::hard_link_count(f0) == 1); in create_tree()
804 BOOST_TEST(fs::hard_link_count(from_ph) == 2); in create_hard_link_tests()
805 BOOST_TEST(fs::hard_link_count(f1x) == 2); in create_hard_link_tests()
/third_party/boost/libs/filesystem/src/
Doperations.cpp1731 boost::uintmax_t hard_link_count(const path& p, system::error_code* ec) in hard_link_count() function