Lines Matching refs:ops
95 fsi_plugin_ops_t *ops; in fsi_open_file() local
99 ops = fsi->f_plugin->fp_ops; in fsi_open_file()
100 ffi = ops->fpo_open(fsi, path); in fsi_open_file()
108 fsi_plugin_ops_t *ops; in fsi_close_file() local
112 ops = ffi->ff_fsi->f_plugin->fp_ops; in fsi_close_file()
113 err = ops->fpo_close(ffi); in fsi_close_file()
121 fsi_plugin_ops_t *ops; in fsi_read_file() local
125 ops = ffi->ff_fsi->f_plugin->fp_ops; in fsi_read_file()
126 ret = ops->fpo_read(ffi, buf, nbytes); in fsi_read_file()
134 fsi_plugin_ops_t *ops; in fsi_pread_file() local
138 ops = ffi->ff_fsi->f_plugin->fp_ops; in fsi_pread_file()
139 ret = ops->fpo_pread(ffi, buf, nbytes, off); in fsi_pread_file()