Lines Matching refs:next
28 struct dummy_lhash_node *next;
36 struct dummy_lhash_node *cur, *next;
38 for (cur = lh->head; cur != NULL; cur = next) {
39 next = cur->next;
49 for (cur = lh->head; cur != NULL; cur = cur->next) {
59 for (cur = lh->head; cur != NULL; cur = cur->next) {
71 for (cur = lh->head; cur != NULL; cur = cur->next) {
82 node->next = lh->head;
92 for (cur = lh->head; cur != NULL; cur = cur->next) {
95 *next_ptr = cur->next;
99 next_ptr = &cur->next;