Lines Matching refs:__ec
36 _LIBCPP_EXPORTED_FROM_ABI path __absolute(const path&, error_code* __ec = nullptr);
37 _LIBCPP_EXPORTED_FROM_ABI path __canonical(const path&, error_code* __ec = nullptr);
39 __copy_file(const path& __from, const path& __to, copy_options __opt, error_code* __ec = nullptr);
41 __copy_symlink(const path& __existing_symlink, const path& __new_symlink, error_code* __ec = nullpt…
43 __copy(const path& __from, const path& __to, copy_options __opt, error_code* __ec = nullptr);
46 __create_directory_symlink(const path& __to, const path& __new_symlink, error_code* __ec = nullptr);
50 __create_hard_link(const path& __to, const path& __new_hard_link, error_code* __ec = nullptr);
52 __create_symlink(const path& __to, const path& __new_symlink, error_code* __ec = nullptr);
53 _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);
55 _LIBCPP_EXPORTED_FROM_ABI bool __equivalent(const path&, const path&, error_code* __ec = nullptr);
56 _LIBCPP_EXPORTED_FROM_ABI file_status __status(const path&, error_code* __ec = nullptr);
57 _LIBCPP_EXPORTED_FROM_ABI uintmax_t __file_size(const path&, error_code* __ec = nullptr);
58 _LIBCPP_EXPORTED_FROM_ABI uintmax_t __hard_link_count(const path&, error_code* __ec = nullptr);
59 _LIBCPP_EXPORTED_FROM_ABI file_status __symlink_status(const path&, error_code* __ec = nullptr);
60 _LIBCPP_EXPORTED_FROM_ABI file_time_type __last_write_time(const path&, error_code* __ec = nullptr);
61 …ROM_ABI void __last_write_time(const path&, file_time_type __new_time, error_code* __ec = nullptr);
62 _LIBCPP_EXPORTED_FROM_ABI path __weakly_canonical(path const& __p, error_code* __ec = nullptr);
63 _LIBCPP_EXPORTED_FROM_ABI path __read_symlink(const path&, error_code* __ec = nullptr);
64 _LIBCPP_EXPORTED_FROM_ABI uintmax_t __remove_all(const path&, error_code* __ec = nullptr);
65 _LIBCPP_EXPORTED_FROM_ABI bool __remove(const path&, error_code* __ec = nullptr);
66 _LIBCPP_EXPORTED_FROM_ABI void __rename(const path& __from, const path& __to, error_code* __ec = nu…
68 _LIBCPP_EXPORTED_FROM_ABI path __temp_directory_path(error_code* __ec = nullptr);
71 …P_HIDE_FROM_ABI path absolute(const path& __p, error_code& __ec) { return __absolute(__p, &__ec); } in absolute() argument
73 …HIDE_FROM_ABI path canonical(const path& __p, error_code& __ec) { return __canonical(__p, &__ec); } in canonical() argument
77 inline _LIBCPP_HIDE_FROM_ABI bool copy_file(const path& __from, const path& __to, error_code& __ec)… in copy_file() argument
78 return __copy_file(__from, __to, copy_options::none, &__ec); in copy_file()
84 copy_file(const path& __from, const path& __to, copy_options __opt, error_code& __ec) { in copy_file() argument
85 return __copy_file(__from, __to, __opt, &__ec); in copy_file()
88 …_HIDE_FROM_ABI void copy_symlink(const path& __from, const path& __to, error_code& __ec) noexcept { in copy_symlink() argument
89 __copy_symlink(__from, __to, &__ec); in copy_symlink()
94 inline _LIBCPP_HIDE_FROM_ABI void copy(const path& __from, const path& __to, error_code& __ec) { in copy() argument
95 __copy(__from, __to, copy_options::none, &__ec); in copy()
100 …DE_FROM_ABI void copy(const path& __from, const path& __to, copy_options __opt, error_code& __ec) { in copy() argument
101 __copy(__from, __to, __opt, &__ec); in copy()
104 inline _LIBCPP_HIDE_FROM_ABI bool create_directories(const path& __p, error_code& __ec) { in create_directories() argument
105 return __create_directories(__p, &__ec); in create_directories()
111 create_directory_symlink(const path& __target, const path& __link, error_code& __ec) noexcept { in create_directory_symlink() argument
112 __create_directory_symlink(__target, __link, &__ec); in create_directory_symlink()
115 inline _LIBCPP_HIDE_FROM_ABI bool create_directory(const path& __p, error_code& __ec) noexcept { in create_directory() argument
116 return __create_directory(__p, &__ec); in create_directory()
121 …E_FROM_ABI bool create_directory(const path& __p, const path& __attrs, error_code& __ec) noexcept { in create_directory() argument
122 return __create_directory(__p, __attrs, &__ec); in create_directory()
128 create_hard_link(const path& __target, const path& __link, error_code& __ec) noexcept { in create_hard_link() argument
129 __create_hard_link(__target, __link, &__ec); in create_hard_link()
134 …FROM_ABI void create_symlink(const path& __target, const path& __link, error_code& __ec) noexcept { in create_symlink() argument
135 return __create_symlink(__target, __link, &__ec); in create_symlink()
138 inline _LIBCPP_HIDE_FROM_ABI path current_path(error_code& __ec) { return __current_path(&__ec); } in current_path() argument
140 inline _LIBCPP_HIDE_FROM_ABI void current_path(const path& __p, error_code& __ec) noexcept { in current_path() argument
141 __current_path(__p, &__ec); in current_path()
144 inline _LIBCPP_HIDE_FROM_ABI bool equivalent(const path& __p1, const path& __p2, error_code& __ec) … in equivalent() argument
145 return __equivalent(__p1, __p2, &__ec); in equivalent()
153 inline _LIBCPP_HIDE_FROM_ABI bool exists(const path& __p, error_code& __ec) noexcept { in exists() argument
154 auto __s = __status(__p, &__ec); in exists()
156 __ec.clear(); in exists()
161 inline _LIBCPP_HIDE_FROM_ABI uintmax_t file_size(const path& __p, error_code& __ec) noexcept { in file_size() argument
162 return __file_size(__p, &__ec); in file_size()
165 inline _LIBCPP_HIDE_FROM_ABI uintmax_t hard_link_count(const path& __p, error_code& __ec) noexcept { in hard_link_count() argument
166 return __hard_link_count(__p, &__ec); in hard_link_count()
170 inline _LIBCPP_HIDE_FROM_ABI bool is_block_file(const path& __p, error_code& __ec) noexcept { in is_block_file() argument
171 return is_block_file(__status(__p, &__ec)); in is_block_file()
177 inline _LIBCPP_HIDE_FROM_ABI bool is_character_file(const path& __p, error_code& __ec) noexcept { in is_character_file() argument
178 return is_character_file(__status(__p, &__ec)); in is_character_file()
182 inline _LIBCPP_HIDE_FROM_ABI bool is_directory(const path& __p, error_code& __ec) noexcept { in is_directory() argument
183 return is_directory(__status(__p, &__ec)); in is_directory()
185 _LIBCPP_EXPORTED_FROM_ABI bool __fs_is_empty(const path& __p, error_code* __ec = nullptr);
187 …HIDE_FROM_ABI bool is_empty(const path& __p, error_code& __ec) { return __fs_is_empty(__p, &__ec);… in is_empty() argument
190 inline _LIBCPP_HIDE_FROM_ABI bool is_fifo(const path& __p, error_code& __ec) noexcept { in is_fifo() argument
191 return is_fifo(__status(__p, &__ec)); in is_fifo()
195 inline _LIBCPP_HIDE_FROM_ABI bool is_regular_file(const path& __p, error_code& __ec) noexcept { in is_regular_file() argument
196 return is_regular_file(__status(__p, &__ec)); in is_regular_file()
200 inline _LIBCPP_HIDE_FROM_ABI bool is_symlink(const path& __p, error_code& __ec) noexcept { in is_symlink() argument
201 return is_symlink(__symlink_status(__p, &__ec)); in is_symlink()
207 inline _LIBCPP_HIDE_FROM_ABI bool is_other(const path& __p, error_code& __ec) noexcept { in is_other() argument
208 return is_other(__status(__p, &__ec)); in is_other()
212 inline _LIBCPP_HIDE_FROM_ABI bool is_socket(const path& __p, error_code& __ec) noexcept { in is_socket() argument
213 return is_socket(__status(__p, &__ec)); in is_socket()
216 inline _LIBCPP_HIDE_FROM_ABI file_time_type last_write_time(const path& __p, error_code& __ec) noex… in last_write_time() argument
217 return __last_write_time(__p, &__ec); in last_write_time()
220 …IDE_FROM_ABI void last_write_time(const path& __p, file_time_type __t, error_code& __ec) noexcept { in last_write_time() argument
221 __last_write_time(__p, __t, &__ec); in last_write_time()
228 inline _LIBCPP_HIDE_FROM_ABI void permissions(const path& __p, perms __prms, error_code& __ec) noex… in permissions() argument
229 __permissions(__p, __prms, perm_options::replace, &__ec); in permissions()
231 …E_FROM_ABI void permissions(const path& __p, perms __prms, perm_options __opts, error_code& __ec) { in permissions() argument
232 __permissions(__p, __prms, __opts, &__ec); in permissions()
235 inline _LIBCPP_HIDE_FROM_ABI path proximate(const path& __p, const path& __base, error_code& __ec) { in proximate() argument
236 path __tmp = __weakly_canonical(__p, &__ec); in proximate()
237 if (__ec) in proximate()
239 path __tmp_base = __weakly_canonical(__base, &__ec); in proximate()
240 if (__ec) in proximate()
245 inline _LIBCPP_HIDE_FROM_ABI path proximate(const path& __p, error_code& __ec) { in proximate() argument
246 return proximate(__p, current_path(), __ec); in proximate()
252 …FROM_ABI path read_symlink(const path& __p, error_code& __ec) { return __read_symlink(__p, &__ec);… in read_symlink() argument
254 inline _LIBCPP_HIDE_FROM_ABI path relative(const path& __p, const path& __base, error_code& __ec) { in relative() argument
255 path __tmp = __weakly_canonical(__p, &__ec); in relative()
256 if (__ec) in relative()
258 path __tmpbase = __weakly_canonical(__base, &__ec); in relative()
259 if (__ec) in relative()
264 inline _LIBCPP_HIDE_FROM_ABI path relative(const path& __p, error_code& __ec) { in relative() argument
265 return relative(__p, current_path(), __ec); in relative()
271 inline _LIBCPP_HIDE_FROM_ABI uintmax_t remove_all(const path& __p, error_code& __ec) { in remove_all() argument
272 return __remove_all(__p, &__ec); in remove_all()
275 …HIDE_FROM_ABI bool remove(const path& __p, error_code& __ec) noexcept { return __remove(__p, &__ec… in remove() argument
277 inline _LIBCPP_HIDE_FROM_ABI void rename(const path& __from, const path& __to, error_code& __ec) no… in rename() argument
278 return __rename(__from, __to, &__ec); in rename()
281 inline _LIBCPP_HIDE_FROM_ABI void resize_file(const path& __p, uintmax_t __ns, error_code& __ec) no… in resize_file() argument
282 return __resize_file(__p, __ns, &__ec); in resize_file()
284 _LIBCPP_EXPORTED_FROM_ABI space_info __space(const path&, error_code* __ec = nullptr);
286 inline _LIBCPP_HIDE_FROM_ABI space_info space(const path& __p, error_code& __ec) noexcept { in space() argument
287 return __space(__p, &__ec); in space()
290 inline _LIBCPP_HIDE_FROM_ABI file_status status(const path& __p, error_code& __ec) noexcept { in status() argument
291 return __status(__p, &__ec); in status()
294 inline _LIBCPP_HIDE_FROM_ABI file_status symlink_status(const path& __p, error_code& __ec) noexcept… in symlink_status() argument
295 return __symlink_status(__p, &__ec); in symlink_status()
298 …CPP_HIDE_FROM_ABI path temp_directory_path(error_code& __ec) { return __temp_directory_path(&__ec)… in temp_directory_path() argument
300 inline _LIBCPP_HIDE_FROM_ABI path weakly_canonical(path const& __p, error_code& __ec) { in weakly_canonical() argument
301 return __weakly_canonical(__p, &__ec); in weakly_canonical()