• Home
  • Raw
  • Download

Lines Matching refs:stat_info

110 void File::Info::FromStat(const stat_wrapper_t& stat_info) {  in FromStat()  argument
111 is_directory = S_ISDIR(stat_info.st_mode); in FromStat()
112 is_symbolic_link = S_ISLNK(stat_info.st_mode); in FromStat()
113 size = stat_info.st_size; in FromStat()
116 time_t last_modified_sec = stat_info.st_mtim.tv_sec; in FromStat()
117 int64_t last_modified_nsec = stat_info.st_mtim.tv_nsec; in FromStat()
118 time_t last_accessed_sec = stat_info.st_atim.tv_sec; in FromStat()
119 int64_t last_accessed_nsec = stat_info.st_atim.tv_nsec; in FromStat()
120 time_t creation_time_sec = stat_info.st_ctim.tv_sec; in FromStat()
121 int64_t creation_time_nsec = stat_info.st_ctim.tv_nsec; in FromStat()
123 time_t last_modified_sec = stat_info.st_mtime; in FromStat()
124 int64_t last_modified_nsec = stat_info.st_mtime_nsec; in FromStat()
125 time_t last_accessed_sec = stat_info.st_atime; in FromStat()
126 int64_t last_accessed_nsec = stat_info.st_atime_nsec; in FromStat()
127 time_t creation_time_sec = stat_info.st_ctime; in FromStat()
128 int64_t creation_time_nsec = stat_info.st_ctime_nsec; in FromStat()
130 time_t last_modified_sec = stat_info.st_mtimespec.tv_sec; in FromStat()
131 int64_t last_modified_nsec = stat_info.st_mtimespec.tv_nsec; in FromStat()
132 time_t last_accessed_sec = stat_info.st_atimespec.tv_sec; in FromStat()
133 int64_t last_accessed_nsec = stat_info.st_atimespec.tv_nsec; in FromStat()
134 time_t creation_time_sec = stat_info.st_ctimespec.tv_sec; in FromStat()
135 int64_t creation_time_nsec = stat_info.st_ctimespec.tv_nsec; in FromStat()
137 time_t last_modified_sec = stat_info.st_mtime; in FromStat()
139 time_t last_accessed_sec = stat_info.st_atime; in FromStat()
141 time_t creation_time_sec = stat_info.st_ctime; in FromStat()