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