Lines Matching refs:ost
74 cvtstat(struct stat30 *ost, const struct stat *st) in cvtstat() argument
77 ost->st_dev = (uint32_t)st->st_dev; in cvtstat()
78 ost->st_ino = st->st_ino; in cvtstat()
79 ost->st_mode = st->st_mode; in cvtstat()
80 ost->st_nlink = st->st_nlink; in cvtstat()
81 ost->st_uid = st->st_uid; in cvtstat()
82 ost->st_gid = st->st_gid; in cvtstat()
83 ost->st_rdev = (uint32_t)st->st_rdev; in cvtstat()
84 timespec_to_timespec50(&st->st_atimespec, &ost->st_atimespec); in cvtstat()
85 timespec_to_timespec50(&st->st_mtimespec, &ost->st_mtimespec); in cvtstat()
86 timespec_to_timespec50(&st->st_ctimespec, &ost->st_ctimespec); in cvtstat()
87 timespec_to_timespec50(&st->st_birthtimespec, &ost->st_birthtimespec); in cvtstat()
88 ost->st_size = st->st_size; in cvtstat()
89 ost->st_blocks = st->st_blocks; in cvtstat()
90 ost->st_blksize = st->st_blksize; in cvtstat()
91 ost->st_flags = st->st_flags; in cvtstat()
92 ost->st_gen = st->st_gen; in cvtstat()
96 __compat___stat30(const char *file, struct stat30 *ost) in __compat___stat30() argument
103 cvtstat(ost, &nst); in __compat___stat30()
108 __compat___fstat30(int f, struct stat30 *ost) in __compat___fstat30() argument
115 cvtstat(ost, &nst); in __compat___fstat30()
120 __compat___lstat30(const char *file, struct stat30 *ost) in __compat___lstat30() argument
127 cvtstat(ost, &nst); in __compat___lstat30()
132 __compat___fhstat40(const void *fh, size_t fh_size, struct stat30 *ost) in __compat___fhstat40() argument
139 cvtstat(ost, &nst); in __compat___fhstat40()