Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/libcxx/include/__filesystem/
H A Doperations.h48 _LIBCPP_FUNC_VIS path __current_path(error_code* __ec = nullptr);
49 _LIBCPP_FUNC_VIS void __current_path(const path&, error_code* __ec = nullptr);
91 inline _LIBCPP_HIDE_FROM_ABI path current_path() { return __current_path(); } in current_path()
92 inline _LIBCPP_HIDE_FROM_ABI path current_path(error_code& __ec) { return __current_path(&__ec); } in current_path()
93 inline _LIBCPP_HIDE_FROM_ABI void current_path(const path& __p) { __current_path(__p); } in current_path()
94 …M_ABI void current_path(const path& __p, error_code& __ec) noexcept { __current_path(__p, &__ec); } in current_path()
/openbsd-src/gnu/llvm/libcxx/src/filesystem/
H A Doperations.cpp695 *cwd = __current_path(ec); in __do_absolute()
1095 path __current_path(error_code* ec) { in __current_path() function
1126 void __current_path(const path& p, error_code* ec) { in __current_path() function