Home
last modified time | relevance | path

Searched refs:__last_write_time (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/libcxx/include/__filesystem/
H A Doperations.h55 _LIBCPP_FUNC_VIS file_time_type __last_write_time(const path&, error_code* __ec = nullptr);
56 _LIBCPP_FUNC_VIS void __last_write_time(const path&, file_time_type __new_time, error_code* __ec = …
139 …PP_HIDE_FROM_ABI file_time_type last_write_time(const path& __p) { return __last_write_time(__p); } in last_write_time()
140 …ast_write_time(const path& __p, error_code& __ec) noexcept { return __last_write_time(__p, &__ec);… in last_write_time()
141 …FROM_ABI void last_write_time(const path& __p, file_time_type __t) { __last_write_time(__p, __t); } in last_write_time()
142 …e(const path& __p, file_time_type __t, error_code& __ec) noexcept { __last_write_time(__p, __t, &_… in last_write_time()
H A Ddirectory_entry.h472 return _VSTD_FS::__last_write_time(__p_, __ec);
/llvm-project-15.0.7/libcxx/src/filesystem/
H A Doperations.cpp1208 file_time_type __last_write_time(const path& p, error_code* ec) { in __last_write_time() function
1220 void __last_write_time(const path& p, file_time_type new_time, error_code* ec) { in __last_write_time() function