Lines Matching refs:ops
56 struct sysfs_ops * ops; member
78 struct sysfs_ops * ops = buffer->ops; in fill_read_buffer() local
92 count = ops->show(kobj, attr_sd->s_attr.attr, buffer->page); in fill_read_buffer()
102 (unsigned long)ops->show); in fill_read_buffer()
202 struct sysfs_ops * ops = buffer->ops; in flush_write_buffer() local
209 rc = ops->store(kobj, attr_sd->s_attr.attr, buffer->page, count); in flush_write_buffer()
337 struct sysfs_ops *ops; in sysfs_open_file() local
351 ops = kobj->ktype->sysfs_ops; in sysfs_open_file()
363 if (!(inode->i_mode & S_IWUGO) || !ops->store) in sysfs_open_file()
372 if (!(inode->i_mode & S_IRUGO) || !ops->show) in sysfs_open_file()
386 buffer->ops = ops; in sysfs_open_file()