Lines Matching refs:head
1414 struct list head;
1417 list_init(&head);
1420 list_insert(&head, &t->node);
1424 list_for_each(t, &head, node) {
1445 struct list head;
1448 list_init(&head);
1451 list_append(&head, &t->node);
1455 list_for_each(t, &head, node) {
1475 struct list head;
1477 list_init(&head);
1480 list_append(&head, &t->node);
1485 list_for_each(t, &head, node) {
1490 list_for_each_safe(t, &head, node) {