Lines Matching refs:kobject
18 sysfs is tied inherently to the kobject infrastructure. Please read
19 Documentation/kobject.txt for more information concerning the kobject
35 For every kobject that is registered with the system, a directory is
37 of the kobject's parent, expressing internal object hierarchies to
42 Sysfs internally stores a pointer to the kobject that implements a
44 the past this kobject pointer has been used by sysfs to do reference
45 counting directly on the kobject whenever the file is opened or closed.
46 With the current sysfs implementation the kobject reference count is
77 int sysfs_create_file(struct kobject * kobj, const struct attribute * attr);
78 void sysfs_remove_file(struct kobject * kobj, const struct attribute * attr);
128 ssize_t (*show)(struct kobject *, struct attribute *, char *);
129 ssize_t (*store)(struct kobject *, struct attribute *, const char *, size_t);
134 stored. See the kobject documentation for more information. ]
137 for the type. The method then translates the generic struct kobject
147 static ssize_t dev_attr_show(struct kobject *kobj, struct attribute *attr,