Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/libcxx/src/filesystem/
H A Dfilesystem_common.h257 struct TimeSpec { struct
263 TimeSpec st_atim; argument
264 TimeSpec st_mtim;
280 using TimeSpec = struct timespec;
461 using fs_time = time_util<file_time_type, int64_t, TimeSpec>;
463 using fs_time = time_util<file_time_type, time_t, TimeSpec>;
467 inline TimeSpec extract_mtime(StatT const& st) { return st.st_mtimespec; }
468 inline TimeSpec extract_atime(StatT const& st) { return st.st_atimespec; }
470 inline TimeSpec extract_mtime(StatT const& st) {
471 TimeSpec TS = {st.st_mtime, 0};
[all …]
H A Dposix_compat.h126 TimeSpec filetime_to_timespec(LARGE_INTEGER li) { in filetime_to_timespec()
127 TimeSpec ret; in filetime_to_timespec()
133 TimeSpec filetime_to_timespec(FILETIME ft) { in filetime_to_timespec()
140 FILETIME timespec_to_filetime(TimeSpec ts) { in timespec_to_filetime()
H A Doperations.cpp640 using detail::TimeSpec;
653 TimeSpec tp = detail::filetime_to_timespec(time); in now()
1225 TimeSpec ts; in __last_write_time()
1236 array<TimeSpec, 2> tbuf; in __last_write_time()