Lines Matching full:structure
25 usually embedded within some other structure which contains the stuff
28 No structure should **EVER** have more than one kobject embedded within it.
32 - A ktype is the type of object that embeds a kobject. Every structure
60 direct expression of inheritance, so other techniques - such as structure
68 So, for example, the UIO code in ``drivers/uio/uio.c`` has a structure that
76 If you have a struct uio_map structure, finding its embedded kobject is
79 what is the pointer to the containing structure? You must avoid tricks
80 (such as assuming that the kobject is at the beginning of the structure)
88 * ``type`` is the type of the containing structure, and
89 * ``member`` is the name of the structure field to which ``pointer`` points.
94 **containing** uio_map structure with::
211 for your structure, please use the struct kref instead; a kobject would be
257 The end result is that a structure protected by a kobject cannot be freed
289 structure.
308 This structure is used to describe a particular type of kobject (or, more
310 kobj_type structure; a pointer to that structure must be specified when you