Searched refs:StatT (Results 1 - 5 of 5) sorted by relevance

/freebsd-current/contrib/llvm-project/libcxx/src/filesystem/
H A Dfile_descriptor.h117 StatT m_stat;
159 StatT const& get_stat() const { return m_stat; }
192 inline perms posix_get_perms(const StatT& st) noexcept { return static_cast<perms>(st.st_mode) & perms::mask; }
194 inline file_status create_file_status(error_code& m_ec, path const& p, const StatT& path_stat, error_code* ec) {
229 inline file_status posix_stat(path const& p, StatT& path_stat, error_code* ec) {
237 StatT path_stat;
241 inline file_status posix_lstat(path const& p, StatT& path_stat, error_code* ec) {
249 StatT path_stat;
263 inline bool posix_fchmod(const FileDescriptor& fd, const StatT& st, error_code& ec) {
272 inline bool stat_equivalent(const StatT
[all...]
H A Dtime_utils.h55 struct StatT { struct in namespace:detail
103 using StatT = struct stat;
277 inline TimeSpec extract_mtime(StatT const& st) { return st.st_mtimespec; }
278 inline TimeSpec extract_atime(StatT const& st) { return st.st_atimespec; }
280 inline TimeSpec extract_mtime(StatT const& st) {
284 inline TimeSpec extract_atime(StatT const& st) {
289 inline TimeSpec extract_mtime(StatT const& st) {
293 inline TimeSpec extract_atime(StatT const& st) {
298 inline TimeSpec extract_mtime(StatT const& st) { return st.st_mtim; }
299 inline TimeSpec extract_atime(StatT cons
[all...]
H A Ddirectory_entry.cpp24 detail::StatT full_st;
H A Doperations.cpp59 using detail::StatT;
112 StatT f_st = {};
118 StatT t_st = {};
272 StatT const& from_stat = from_fd.get_stat();
283 StatT to_stat_path;
412 StatT attr_stat;
507 StatT st1 = {}, st2 = {};
522 StatT st;
538 StatT st;
549 StatT ps
[all...]
H A Dposix_compat.h153 inline int stat_handle(HANDLE h, StatT* buf) {
189 inline int stat_file(const wchar_t* path, StatT* buf, DWORD flags) {
197 inline int stat(const wchar_t* path, StatT* buf) { return stat_file(path, buf, 0); }
199 inline int lstat(const wchar_t* path, StatT* buf) { return stat_file(path, buf, FILE_FLAG_OPEN_REPARSE_POINT); }
201 inline int fstat(int fd, StatT* buf) {

Completed in 159 milliseconds