Home
last modified time | relevance | path

Searched refs:StatT (Results 1 – 5 of 5) sorted by relevance

/src/contrib/llvm-project/libcxx/src/filesystem/
H A Dfile_descriptor.h117 StatT m_stat;
159 StatT const& get_stat() const { return m_stat; } in get_stat()
192 inline perms posix_get_perms(const StatT& st) noexcept { return static_cast<perms>(st.st_mode) & pe… in posix_get_perms()
194 inline file_status create_file_status(error_code& m_ec, path const& p, const StatT& path_stat, erro… in create_file_status()
229 inline file_status posix_stat(path const& p, StatT& path_stat, error_code* ec) { in posix_stat()
237 StatT path_stat; in posix_stat()
241 inline file_status posix_lstat(path const& p, StatT& path_stat, error_code* ec) { in posix_lstat()
249 StatT path_stat; in posix_lstat()
263 inline bool posix_fchmod(const FileDescriptor& fd, const StatT& st, error_code& ec) { in posix_fchmod()
272 inline bool stat_equivalent(const StatT& st1, const StatT& st2) { in stat_equivalent()
H A Dtime_utils.h55 struct StatT { struct
103 using StatT = struct stat;
277 inline TimeSpec extract_mtime(StatT const& st) { return st.st_mtimespec; }
278 inline TimeSpec extract_atime(StatT const& st) { return st.st_atimespec; }
280 inline TimeSpec extract_mtime(StatT const& st) {
284 inline TimeSpec extract_atime(StatT const& st) {
289 inline TimeSpec extract_mtime(StatT const& st) {
293 inline TimeSpec extract_atime(StatT const& st) {
298 inline TimeSpec extract_mtime(StatT const& st) { return st.st_mtim; }
299 inline TimeSpec extract_atime(StatT const& st) { return st.st_atim; }
[all …]
H A Doperations.cpp59 using detail::StatT;
112 StatT f_st; in __copy()
118 StatT t_st; in __copy()
269 StatT const& from_stat = from_fd.get_stat(); in __copy_file()
280 StatT to_stat_path; in __copy_file()
409 StatT attr_stat; in __create_directory()
504 StatT st1 = {}, st2 = {}; in __equivalent()
519 StatT st; in __file_size()
535 StatT st; in __hard_link_count()
546 StatT pst; in __fs_is_empty()
[all …]
H A Dposix_compat.h153 inline int stat_handle(HANDLE h, StatT* buf) { in stat_handle()
189 inline int stat_file(const wchar_t* path, StatT* buf, DWORD flags) { in stat_file()
197 inline int stat(const wchar_t* path, StatT* buf) { return stat_file(path, buf, 0); } in stat()
199 inline int lstat(const wchar_t* path, StatT* buf) { return stat_file(path, buf, FILE_FLAG_OPEN_REPA… in lstat()
201 inline int fstat(int fd, StatT* buf) { in fstat()
H A Ddirectory_entry.cpp24 detail::StatT full_st; in __do_refresh()