Lines Matching refs:stat_info
114 void File::Info::FromStat(const stat_wrapper_t& stat_info) { in FromStat() argument
115 is_directory = S_ISDIR(stat_info.st_mode); in FromStat()
116 is_symbolic_link = S_ISLNK(stat_info.st_mode); in FromStat()
117 size = stat_info.st_size; in FromStat()
120 time_t last_modified_sec = stat_info.st_mtim.tv_sec; in FromStat()
121 int64_t last_modified_nsec = stat_info.st_mtim.tv_nsec; in FromStat()
122 time_t last_accessed_sec = stat_info.st_atim.tv_sec; in FromStat()
123 int64_t last_accessed_nsec = stat_info.st_atim.tv_nsec; in FromStat()
124 time_t creation_time_sec = stat_info.st_ctim.tv_sec; in FromStat()
125 int64_t creation_time_nsec = stat_info.st_ctim.tv_nsec; in FromStat()
127 time_t last_modified_sec = stat_info.st_mtime; in FromStat()
128 int64_t last_modified_nsec = stat_info.st_mtime_nsec; in FromStat()
129 time_t last_accessed_sec = stat_info.st_atime; in FromStat()
130 int64_t last_accessed_nsec = stat_info.st_atime_nsec; in FromStat()
131 time_t creation_time_sec = stat_info.st_ctime; in FromStat()
132 int64_t creation_time_nsec = stat_info.st_ctime_nsec; in FromStat()
134 time_t last_modified_sec = stat_info.st_mtimespec.tv_sec; in FromStat()
135 int64_t last_modified_nsec = stat_info.st_mtimespec.tv_nsec; in FromStat()
136 time_t last_accessed_sec = stat_info.st_atimespec.tv_sec; in FromStat()
137 int64_t last_accessed_nsec = stat_info.st_atimespec.tv_nsec; in FromStat()
138 time_t creation_time_sec = stat_info.st_ctimespec.tv_sec; in FromStat()
139 int64_t creation_time_nsec = stat_info.st_ctimespec.tv_nsec; in FromStat()
141 time_t last_modified_sec = stat_info.st_mtime; in FromStat()
143 time_t last_accessed_sec = stat_info.st_atime; in FromStat()
145 time_t creation_time_sec = stat_info.st_ctime; in FromStat()