Lines Matching refs:old
148 evStream *old = id.opaque;
159 if (old->prev != NULL)
160 old->prev->next = old->next;
162 ctx->streams = old->next;
163 if (old->next != NULL)
164 old->next->prev = old->prev;
167 * If 'old' is on the ctx->strDone list, remove it. Update
170 if (old->prevDone == NULL && old->nextDone == NULL) {
172 * Either 'old' is the only item on the done list, or it's
176 if (ctx->strDone == old) {
181 if (old->prevDone != NULL)
182 old->prevDone->nextDone = old->nextDone;
184 ctx->strDone = old->nextDone;
185 if (old->nextDone != NULL)
186 old->nextDone->prevDone = old->prevDone;
188 ctx->strLast = old->prevDone;
192 if (old->file.opaque)
193 evDeselectFD(opaqueCtx, old->file);
194 memput(old->iovOrig, sizeof (struct iovec) * old->iovOrigCount);
195 FREE(old);