Home | History | Annotate | Download | only in sys

Lines Matching refs:st

73 cvtstat(struct stat13 *ost, const struct stat *st)
76 ost->st_dev = (uint32_t)st->st_dev;
77 ost->st_ino = (uint32_t)st->st_ino;
78 ost->st_mode = st->st_mode;
79 ost->st_nlink = st->st_nlink;
80 ost->st_uid = st->st_uid;
81 ost->st_gid = st->st_gid;
82 ost->st_rdev = (uint32_t)st->st_rdev;
83 ost->st_atimespec.tv_sec = (int32_t)st->st_atimespec.tv_sec;
84 ost->st_atimespec.tv_nsec = st->st_atimespec.tv_nsec;
85 ost->st_mtimespec.tv_sec = (int32_t)st->st_mtimespec.tv_sec;
86 ost->st_mtimespec.tv_nsec = st->st_mtimespec.tv_nsec;
87 ost->st_ctimespec.tv_sec = (int32_t)st->st_ctimespec.tv_sec;
88 ost->st_ctimespec.tv_nsec = st->st_ctimespec.tv_nsec;
89 ost->st_birthtimespec.tv_sec = (int32_t)st->st_birthtimespec.tv_sec;
90 ost->st_birthtimespec.tv_nsec = st->st_birthtimespec.tv_nsec;
91 ost->st_size = st->st_size;
92 ost->st_blocks = st->st_blocks;
93 ost->st_blksize = st->st_blksize;
94 ost->st_flags = st->st_flags;
95 ost->st_gen = st->st_gen;