Lines Matching refs:next
62 new->next = NULL; in evWaitFor()
64 wl->last->next = new; in evWaitFor()
93 ctx->waitDone.last->next = first; in evDo()
118 prev = this, this = this->next) in evUnwait()
122 prev->next = this->next; in evUnwait()
124 wl->first = this->next; in evUnwait()
137 prev = this, this = this->next) in evUnwait()
141 prev->next = this->next; in evUnwait()
143 ctx->waitDone.first = this->next; in evUnwait()
172 new->next = NULL; in evDefer()
174 ctx->waitDone.last->next = new; in evDefer()
191 for (wl = ctx->waitLists; wl != NULL; wl = wl->next) { in print_waits()
194 for (this = wl->first; this != NULL; this = this->next) in print_waits()
199 for (this = ctx->waitDone.first; this != NULL; this = this->next) in print_waits()
213 new->next = ctx->waitLists; in evNewWaitList()
214 if (new->next != NULL) in evNewWaitList()
215 new->next->prev = new; in evNewWaitList()
226 this->prev->next = this->next; in evFreeWaitList()
228 ctx->waitLists = this->next; in evFreeWaitList()
229 if (this->next != NULL) in evFreeWaitList()
230 this->next->prev = this->prev; in evFreeWaitList()
238 for (this = ctx->waitLists; this != NULL; this = this->next) { in evGetWaitList()