Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/__filesystem/
H A Doperations.h53 _LIBCPP_EXPORTED_FROM_ABI path __current_path(error_code* __ec = nullptr);
54 _LIBCPP_EXPORTED_FROM_ABI void __current_path(const path&, error_code* __ec = nullptr);
137 inline _LIBCPP_HIDE_FROM_ABI path current_path() { return __current_path(); } in current_path()
138 inline _LIBCPP_HIDE_FROM_ABI path current_path(error_code& __ec) { return __current_path(&__ec); } in current_path()
139 inline _LIBCPP_HIDE_FROM_ABI void current_path(const path& __p) { __current_path(__p); } in current_path()
141 __current_path(__p, &__ec); in current_path()
/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Doperations.cpp70 *cwd = __current_path(ec); in __do_absolute()
449 path __current_path(error_code* ec) { in __current_path() function
494 void __current_path(const path& p, error_code* ec) { in __current_path() function