Lines Matching defs:ost
83 cvtstat(struct stat13 *ost, const struct stat *st)
87 memset(ost, 0, sizeof(*ost));
88 ost->st_dev = st->st_dev;
89 ost->st_ino = (uint32_t)st->st_ino;
90 ost->st_mode = st->st_mode;
91 ost->st_nlink = st->st_nlink;
92 ost->st_uid = st->st_uid;
93 ost->st_gid = st->st_gid;
94 ost->st_rdev = st->st_rdev;
95 timespec_to_timespec50(&st->st_atimespec, &ost->st_atimespec);
96 timespec_to_timespec50(&st->st_mtimespec, &ost->st_mtimespec);
97 timespec_to_timespec50(&st->st_ctimespec, &ost->st_ctimespec);
98 timespec_to_timespec50(&st->st_birthtimespec, &ost->st_birthtimespec);
99 ost->st_size = st->st_size;
100 ost->st_blocks = st->st_blocks;
101 ost->st_blksize = st->st_blksize;
102 ost->st_flags = st->st_flags;
103 ost->st_gen = st->st_gen;