Lines Matching refs:prev
108 evWait *this, *prev; in evUnwait() local
116 for (prev = NULL, this = wl->first; in evUnwait()
118 prev = this, this = this->next) in evUnwait()
121 if (prev != NULL) in evUnwait()
122 prev->next = this->next; in evUnwait()
126 wl->last = prev; in evUnwait()
135 for (prev = NULL, this = ctx->waitDone.first; in evUnwait()
137 prev = this, this = this->next) in evUnwait()
140 if (prev != NULL) in evUnwait()
141 prev->next = this->next; in evUnwait()
145 ctx->waitDone.last = prev; in evUnwait()
212 new->prev = NULL; in evNewWaitList()
215 new->next->prev = new; in evNewWaitList()
225 if (this->prev != NULL) in evFreeWaitList()
226 this->prev->next = this->next; in evFreeWaitList()
230 this->next->prev = this->prev; in evFreeWaitList()