Home | History | Annotate | Download | only in isc

Lines Matching refs:streams

79 	if (ctx->streams != NULL)
80 ctx->streams->prev = new;
82 new->next = ctx->streams;
83 ctx->streams = new;
113 if (ctx->streams != NULL)
114 ctx->streams->prev = new;
116 new->next = ctx->streams;
117 ctx->streams = new;
155 * The streams list is doubly threaded. First, there's ctx->streams
156 * that's used by evDestroy() to find and cancel all streams. Second,
158 * through the potentially smaller number of "IO completed" streams,
162 /* Unlink from ctx->streams. */
166 ctx->streams = old->next;