Home
last modified time | relevance | path

Searched refs:f_ops (Results 1 – 8 of 8) sorted by relevance

/illumos-gate/usr/src/boot/libsa/
H A Dclose.c82 if (!(f->f_flags & F_RAW) && f->f_ops) in close()
83 err1 = (f->f_ops->fo_close)(f); in close()
H A Dlseek.c105 filepos = (f->f_ops->fo_seek)(f, 0, SEEK_CUR); in lseek()
140 return (f->f_ops->fo_seek)(f, offset, where); in lseek()
H A Dread.c116 errno = (f->f_ops->fo_read)(f, dest, resid, &cresid); in read()
123 errno = (f->f_ops->fo_read)(f, f->f_rabuf, SOPEN_RASIZE, in read()
H A Dopen.c153 f->f_ops = NULL; in open()
201 f->f_ops = fs; in open()
H A Dfstat.c55 errno = (f->f_ops->fo_stat)(f, sb); in fstat()
H A Dreaddir.c47 errno = (f->f_ops->fo_readdir)(f, &dir); in readdirfd()
H A Dwrite.c90 if ((errno = (f->f_ops->fo_write)(f, dest, bcount, &resid))) in write()
H A Dstand.h181 struct fs_ops *f_ops; /* pointer to file system operations */ member