Lines Matching refs:streams
75 if (ctx->streams != NULL)
76 ctx->streams->prev = new;
78 new->next = ctx->streams;
79 ctx->streams = new;
109 if (ctx->streams != NULL)
110 ctx->streams->prev = new;
112 new->next = ctx->streams;
113 ctx->streams = new;
151 * The streams list is doubly threaded. First, there's ctx->streams
152 * that's used by evDestroy() to find and cancel all streams. Second,
154 * through the potentially smaller number of "IO completed" streams,
158 /* Unlink from ctx->streams. */
162 ctx->streams = old->next;