Home
last modified time | relevance | path

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

/llvm-project-15.0.7/libcxx/src/filesystem/
H A Dfilesystem_common.h467 inline TimeSpec extract_mtime(StatT const& st) { return st.st_mtimespec; }
470 inline TimeSpec extract_mtime(StatT const& st) {
479 inline TimeSpec extract_mtime(StatT const& st) {
488 inline TimeSpec extract_mtime(StatT const& st) { return st.st_mtim; }
H A Doperations.cpp938 auto from_time = detail::extract_mtime(from_stat); in __copy_file()
939 auto to_time = detail::extract_mtime(to_stat_path); in __copy_file()
1201 auto ts = detail::extract_mtime(st); in __extract_last_write_time()
/llvm-project-15.0.7/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.last_write_time/
H A Dlast_write_time.pass.cpp102 TimeSpec extract_mtime(StatT const& st) { return st.st_mtimespec; } in extract_mtime() function
105 TimeSpec extract_mtime(StatT const& st) { return st.st_mtim; } in extract_mtime() function
173 return {extract_atime(st), extract_mtime(st)}; in GetTimes()
192 res.write = extract_mtime(st); in GetSymlinkTimes()