Lines Matching refs:pointer
20 and a reference count. A kobject also has a parent pointer (allowing
77 often have the opposite problem, however: given a struct kobject pointer,
78 what is the pointer to the containing structure? You must avoid tricks
82 container_of(pointer, type, member)
86 * "pointer" is the pointer to the embedded kobject,
88 * "member" is the name of the structure field to which "pointer" points.
90 The return value from container_of() is a pointer to the corresponding
91 container type. So, for example, a pointer "kp" to a struct kobject
92 embedded *within* a struct uio_map could be converted to a pointer to the
108 where the macro argument "map" is a pointer to the struct kobject in
193 counter and return the pointer to the kobject.
296 kobj_type structure; a pointer to that structure must be specified when you
299 The release field in struct kobj_type is, of course, a pointer to the
304 The default_attrs pointer is a list of default attributes that will be