Lines Matching full:streams
80 if (ctx->streams != NULL) in evWrite()
81 ctx->streams->prev = new; in evWrite()
83 new->next = ctx->streams; in evWrite()
84 ctx->streams = new; in evWrite()
114 if (ctx->streams != NULL) in evRead()
115 ctx->streams->prev = new; in evRead()
117 new->next = ctx->streams; in evRead()
118 ctx->streams = new; in evRead()
156 * The streams list is doubly threaded. First, there's ctx->streams in evCancelRW()
157 * that's used by evDestroy() to find and cancel all streams. Second, in evCancelRW()
159 * through the potentially smaller number of "IO completed" streams, in evCancelRW()
163 /* Unlink from ctx->streams. */ in evCancelRW()
167 ctx->streams = old->next; in evCancelRW()