Lines Matching defs:wl
58 evWaitList *wl = evGetWaitList(ctx, tag, 1);
65 if (wl->last != NULL)
66 wl->last->next = new;
68 wl->first = new;
69 wl->last = new;
83 evWaitList *wl = evGetWaitList(ctx, tag, 0);
86 if (!wl) {
91 first = wl->first;
98 ctx->waitDone.last = wl->last;
99 evFreeWaitList(ctx, wl);
111 evWaitList *wl;
116 wl = evGetWaitList(ctx, this->tag, 0);
117 if (wl != NULL) {
118 for (prev = NULL, this = wl->first;
126 wl->first = this->next;
127 if (wl->last == this)
128 wl->last = prev;
129 if (wl->first == NULL)
130 evFreeWaitList(ctx, wl);
189 evWaitList *wl;
193 for (wl = ctx->waitLists; wl != NULL; wl = wl->next) {
194 INSIST(wl->first != NULL);
195 evPrintf(ctx, 9, " tag %p:", wl->first->tag);
196 for (this = wl->first; this != NULL; this = this->next)