Lines Matching full:member
124 * @member: the name of the hlist_node within the struct
126 #define hash_for_each(name, bkt, obj, member) \ argument
129 hlist_for_each_entry(obj, &name[bkt], member)
136 * @member: the name of the hlist_node within the struct
138 #define hash_for_each_rcu(name, bkt, obj, member) \ argument
141 hlist_for_each_entry_rcu(obj, &name[bkt], member)
150 * @member: the name of the hlist_node within the struct
152 #define hash_for_each_safe(name, bkt, tmp, obj, member) \ argument
155 hlist_for_each_entry_safe(obj, tmp, &name[bkt], member)
162 * @member: the name of the hlist_node within the struct
165 #define hash_for_each_possible(name, obj, member, key) \ argument
166 hlist_for_each_entry(obj, &name[hash_min(key, HASH_BITS(name))], member)
173 * @member: the name of the hlist_node within the struct
176 #define hash_for_each_possible_rcu(name, obj, member, key, cond...) \ argument
178 member, ## cond)
185 * @member: the name of the hlist_node within the struct
191 #define hash_for_each_possible_rcu_notrace(name, obj, member, key) \ argument
193 &name[hash_min(key, HASH_BITS(name))], member)
201 * @member: the name of the hlist_node within the struct
204 #define hash_for_each_possible_safe(name, obj, tmp, member, key) \ argument
206 &name[hash_min(key, HASH_BITS(name))], member)