Home
last modified time | relevance | path

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

/external/libcxx/test/std/input.output/filesystems/fs.op.funcs/fs.op.last_write_time/
Dlast_write_time.pass.cpp49 TimeSpec extract_mtime(StatT const& st) { return st.st_mtimespec; } in extract_mtime() function
52 TimeSpec extract_mtime(StatT const& st) { return st.st_mtim; } in extract_mtime() function
121 return {extract_atime(st), extract_mtime(st)}; in GetTimes()
141 res.write = extract_mtime(st); in GetSymlinkTimes()
/external/libcxx/src/filesystem/
Dfilesystem_common.h384 TimeSpec extract_mtime(StatT const& st) { return st.st_mtimespec; }
387 TimeSpec extract_mtime(StatT const& st) { return st.st_mtim; }
Doperations.cpp773 auto from_time = detail::extract_mtime(from_stat); in __copy_file()
774 auto to_time = detail::extract_mtime(to_stat_path); in __copy_file()
997 auto ts = detail::extract_mtime(st); in __extract_last_write_time()