Home
last modified time | relevance | path

Searched refs:__current_path (Results 1 – 2 of 2) sorted by relevance

/freebsd-14.2/contrib/llvm-project/libcxx/include/__filesystem/
H A Doperations.h54 _LIBCPP_EXPORTED_FROM_ABI path __current_path(error_code* __ec = nullptr);
55 _LIBCPP_EXPORTED_FROM_ABI void __current_path(const path&, error_code* __ec = nullptr);
138 inline _LIBCPP_HIDE_FROM_ABI path current_path() { return __current_path(); } in current_path()
139 inline _LIBCPP_HIDE_FROM_ABI path current_path(error_code& __ec) { return __current_path(&__ec); } in current_path()
140 inline _LIBCPP_HIDE_FROM_ABI void current_path(const path& __p) { __current_path(__p); } in current_path()
142 __current_path(__p, &__ec); in current_path()
/freebsd-14.2/contrib/llvm-project/libcxx/src/filesystem/
H A Doperations.cpp70 *cwd = __current_path(ec); in __do_absolute()
452 path __current_path(error_code* ec) { in __current_path() function
497 void __current_path(const path& p, error_code* ec) { in __current_path() function