Lines Matching refs:cursor
33 #define __qdf_ht_for_each(table, i, cursor, entry_field) \ argument
34 hash_for_each(table, i, cursor, entry_field)
36 #define __qdf_ht_for_each_in_bucket(table, cursor, entry_field, key) \ argument
37 hash_for_each_possible(table, cursor, entry_field, key)
39 #define __qdf_ht_for_each_match(table, cursor, entry_field, key, key_field) \ argument
40 hash_for_each_possible(table, (cursor), entry_field, (key)) \
41 if ((cursor)->key_field == (key))
43 #define __qdf_ht_get(table, cursor, entry_field, key, key_field) \ argument
45 cursor = NULL; \
46 __qdf_ht_for_each_match(table, cursor, entry_field, key, key_field) \
50 #define __qdf_ht_for_each_safe(table, i, tmp, cursor, entry_field) \ argument
51 hash_for_each_safe(table, i, tmp, cursor, entry_field)