Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/libcxx/src/filesystem/
H A Dfilesystem_common.h261 struct StatT { struct
282 using StatT = struct stat; argument
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) {
474 inline TimeSpec extract_atime(StatT const& st) {
479 inline TimeSpec extract_mtime(StatT const& st) {
483 inline TimeSpec extract_atime(StatT const& st) {
488 inline TimeSpec extract_mtime(StatT const& st) { return st.st_mtim; }
489 inline TimeSpec extract_atime(StatT const& st) { return st.st_atim; }
H A Doperations.cpp484 StatT m_stat;
509 StatT const& get_stat() const { return m_stat; } in get_stat()
537 perms posix_get_perms(const StatT& st) noexcept { in posix_get_perms()
542 const StatT& path_stat, error_code* ec) { in create_file_status()
577 file_status posix_stat(path const& p, StatT& path_stat, error_code* ec) { in posix_stat()
585 StatT path_stat; in posix_stat()
589 file_status posix_lstat(path const& p, StatT& path_stat, error_code* ec) { in posix_lstat()
597 StatT path_stat; in posix_lstat()
611 bool posix_fchmod(const FileDescriptor& fd, const StatT& st, error_code& ec) { in posix_fchmod()
620 bool stat_equivalent(const StatT& st1, const StatT& st2) { in stat_equivalent()
[all …]
H A Dposix_compat.h173 int stat_handle(HANDLE h, StatT *buf) { in stat_handle()
211 int stat_file(const wchar_t *path, StatT *buf, DWORD flags) { in stat_file()
219 int stat(const wchar_t *path, StatT *buf) { return stat_file(path, buf, 0); } in stat()
221 int lstat(const wchar_t *path, StatT *buf) { in lstat()
225 int fstat(int fd, StatT *buf) { in fstat()