Lines Matching full:entries
24 SLIST_ENTRY(Entry) entries;
37 SLIST_FOREACH(e, &head, entries) { v.append(e->c); }
43 SLIST_INSERT_HEAD(&head, &e1, entries);
48 SLIST_INSERT_AFTER(&e1, &e2, entries);
55 SLIST_INSERT_HEAD(&head2, &e3, entries);
63 SLIST_CONCAT(&head2, &head, Entry, entries);
67 SLIST_CONCAT(&head, &head2, Entry, entries);
72 SLIST_FOREACH_SAFE(e, &head, entries, tmp) {
74 SLIST_REMOVE(&head, e, Entry, entries);
82 SLIST_REMOVE_HEAD(&head, entries);
91 STAILQ_ENTRY(Entry) entries;
104 STAILQ_FOREACH(e, &head, entries) { v.append(e->c); }
113 STAILQ_INSERT_HEAD(&head, &e1, entries);
118 STAILQ_INSERT_TAIL(&head, &e2, entries);
123 STAILQ_INSERT_AFTER(&head, &e2, &e3, entries);
130 STAILQ_INSERT_HEAD(&head2, &e4, entries);
138 STAILQ_CONCAT(&head2, &head, Entry, entries);
141 ASSERT_EQ(STAILQ_LAST(&head2, Entry, entries), &e4);
145 STAILQ_CONCAT(&head, &head2, Entry, entries);
148 ASSERT_EQ(STAILQ_LAST(&head, Entry, entries), &e4);
153 STAILQ_FOREACH_SAFE(e, &head, entries, tmp) {
155 STAILQ_REMOVE(&head, e, Entry, entries);
163 STAILQ_REMOVE_HEAD(&head, entries);