Searched refs:__create_directory (Results 1 – 2 of 2) sorted by relevance
| /llvm-project-15.0.7/libcxx/include/__filesystem/ |
| H A D | operations.h | 44 _LIBCPP_FUNC_VIS bool __create_directory(const path&, error_code* = nullptr); 45 _LIBCPP_FUNC_VIS bool __create_directory(const path&, const path& __attributes, error_code* = nullp… 83 inline _LIBCPP_HIDE_FROM_ABI bool create_directory(const path& __p) { return __create_directory(__p… in create_directory() 84 …ate_directory(const path& __p, error_code& __ec) noexcept { return __create_directory(__p, &__ec);… in create_directory() 85 …ol create_directory(const path& __p, const path& __attrs) { return __create_directory(__p, __attrs… in create_directory() 86 …ath& __p, const path& __attrs, error_code& __ec) noexcept { return __create_directory(__p, __attrs… in create_directory()
|
| /llvm-project-15.0.7/libcxx/src/filesystem/ |
| H A D | operations.cpp | 792 __create_directory(to, from, ec); in __copy() 1028 bool ret = __create_directory(p, &m_ec); in __create_directories() 1034 bool __create_directory(const path& p, error_code* ec) { in __create_directory() function 1050 bool __create_directory(path const& p, path const& attributes, error_code* ec) { in __create_directory() function
|