Lines Matching refs:stat_info
85 void File::Info::FromStat(const stat_wrapper_t& stat_info) { in FromStat() argument
86 is_directory = S_ISDIR(stat_info.st_mode); in FromStat()
87 is_symbolic_link = S_ISLNK(stat_info.st_mode); in FromStat()
88 size = stat_info.st_size; in FromStat()
91 time_t last_modified_sec = stat_info.st_mtimespec.tv_sec; in FromStat()
92 int64_t last_modified_nsec = stat_info.st_mtimespec.tv_nsec; in FromStat()
93 time_t last_accessed_sec = stat_info.st_atimespec.tv_sec; in FromStat()
94 int64_t last_accessed_nsec = stat_info.st_atimespec.tv_nsec; in FromStat()
95 time_t creation_time_sec = stat_info.st_ctimespec.tv_sec; in FromStat()
96 int64_t creation_time_nsec = stat_info.st_ctimespec.tv_nsec; in FromStat()
98 time_t last_modified_sec = stat_info.st_mtime; in FromStat()
100 time_t last_accessed_sec = stat_info.st_atime; in FromStat()
102 time_t creation_time_sec = stat_info.st_ctime; in FromStat()
105 time_t last_modified_sec = stat_info.st_mtim.tv_sec; in FromStat()
106 int64_t last_modified_nsec = stat_info.st_mtim.tv_nsec; in FromStat()
107 time_t last_accessed_sec = stat_info.st_atim.tv_sec; in FromStat()
108 int64_t last_accessed_nsec = stat_info.st_atim.tv_nsec; in FromStat()
109 time_t creation_time_sec = stat_info.st_ctim.tv_sec; in FromStat()
110 int64_t creation_time_nsec = stat_info.st_ctim.tv_nsec; in FromStat()