Lines Matching refs:next
41 QLIST_ENTRY(IOHandlerRecord) next;
59 QLIST_FOREACH(ioh, &io_handlers, next) {
66 QLIST_FOREACH(ioh, &io_handlers, next) {
71 QLIST_INSERT_HEAD(&io_handlers, ioh, next);
95 QLIST_FOREACH(ioh, &io_handlers, next) {
118 QLIST_FOREACH_SAFE(ioh, &io_handlers, next, pioh) {
128 QLIST_REMOVE(ioh, next);
140 QLIST_ENTRY(ChildProcessRecord) next;
155 ChildProcessRecord *rec, *next;
157 QLIST_FOREACH_SAFE(rec, &child_watches, next, next) {
159 QLIST_REMOVE(rec, next);
183 QLIST_FOREACH(rec, &child_watches, next) {
190 QLIST_INSERT_HEAD(&child_watches, rec, next);