Lines Matching refs:object
19 - A kobject is an object of type struct kobject. Kobjects have a name
29 If it does, the reference counting for the object is sure to be messed
32 - A ktype is the type of object that embeds a kobject. Every structure
53 a larger, domain-specific object. To this end, kobjects will be found
55 object-oriented terms, kobjects can be seen as a top-level, abstract class
116 Code which creates a kobject must, of course, initialize that object. Some
185 for the object in which it is embedded. As long as references to the object
186 exist, the object (and the code which supports it) must continue to exist.
196 reference count and, possibly, free the object. Note that kobject_init()
244 predictable object lifecycles become more complicated when sysfs is brought
266 /* Perform any additional cleanup on this object, then... */
295 correctly, of containing object). Every kobject needs to have an associated
327 In object-oriented terms, "kset" is the top-level container class; ksets
394 sent for the object, a corresponding KOBJ_REMOVE uevent will be sent, and
398 allowed to sleep when you need to destroy the object), then call
401 the object is still the same. At a later time call kobject_put() to finish
404 kobject_del() can be used to drop the reference to the parent object, if