Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/libcxx/src/filesystem/
H A Dfilesystem_common.h253 struct StatT { struct
274 using StatT = struct stat; argument
459 inline TimeSpec extract_mtime(StatT const& st) { return st.st_mtimespec; }
460 inline TimeSpec extract_atime(StatT const& st) { return st.st_atimespec; }
462 inline TimeSpec extract_mtime(StatT const& st) {
466 inline TimeSpec extract_atime(StatT const& st) {
471 inline TimeSpec extract_mtime(StatT const& st) {
475 inline TimeSpec extract_atime(StatT const& st) {
480 inline TimeSpec extract_mtime(StatT const& st) { return st.st_mtim; }
481 inline TimeSpec extract_atime(StatT const& st) { return st.st_atim; }
H A Doperations.cpp481 StatT m_stat;
506 StatT const& get_stat() const { return m_stat; } in get_stat()
534 perms posix_get_perms(const StatT& st) noexcept { in posix_get_perms()
539 const StatT& path_stat, error_code* ec) { in create_file_status()
574 file_status posix_stat(path const& p, StatT& path_stat, error_code* ec) { in posix_stat()
582 StatT path_stat; in posix_stat()
586 file_status posix_lstat(path const& p, StatT& path_stat, error_code* ec) { in posix_lstat()
594 StatT path_stat; in posix_lstat()
608 bool posix_fchmod(const FileDescriptor& fd, const StatT& st, error_code& ec) { in posix_fchmod()
617 bool stat_equivalent(const StatT& st1, const StatT& st2) { in stat_equivalent()
[all …]
H A Dposix_compat.h172 int stat_handle(HANDLE h, StatT *buf) { in stat_handle()
210 int stat_file(const wchar_t *path, StatT *buf, DWORD flags) { in stat_file()
218 int stat(const wchar_t *path, StatT *buf) { return stat_file(path, buf, 0); } in stat()
220 int lstat(const wchar_t *path, StatT *buf) { in lstat()
224 int fstat(int fd, StatT *buf) { in fstat()