Home | History | Annotate | Download | only in isc

Lines Matching refs:streams

85 	if (ctx->streams != NULL)
86 ctx->streams->prev = new;
88 new->next = ctx->streams;
89 ctx->streams = new;
119 if (ctx->streams != NULL)
120 ctx->streams->prev = new;
122 new->next = ctx->streams;
123 ctx->streams = new;
161 * The streams list is doubly threaded. First, there's ctx->streams
162 * that's used by evDestroy() to find and cancel all streams. Second,
164 * through the potentially smaller number of "IO completed" streams,
168 /* Unlink from ctx->streams. */
172 ctx->streams = old->next;