Lines Matching refs:si

321   nghttp2_stream *si;
341 for (si = stream->dep_next; si; si = si->sib_next) {
342 ensure_inactive(si);
347 nghttp2_stream *si;
361 for (si = stream->dep_next; si; si = si->sib_next) {
362 if (si->queued) {
375 for (si = stream->dep_next; si; si = si->sib_next) {
376 check_queued(si);
388 for (si = stream->dep_next; si; si = si->sib_next) {
389 ensure_inactive(si);
395 nghttp2_stream *si;
397 for (si = stream->dep_next; si; si = si->sib_next) {
398 n += si->weight;
405 for (si = stream->dep_next; si; si = si->sib_next) {
406 check_sum_dep(si);
411 nghttp2_stream *si;
412 for (si = stream->dep_next; si; si = si->sib_next) {
413 if (si->dep_prev != stream) {
414 fprintf(stderr, "si->dep_prev = %p; want %p\n", si->dep_prev, stream);
417 check_dep_prev(si);
425 nghttp2_stream *si;
440 for (si = stream->dep_next; si; si = si->sib_next) {
441 ensure_inactive(si);
444 for (si = stream->dep_next; si; si = si->sib_next) {
445 check_queued(si);
606 nghttp2_stream *si;
616 for (si = dep_stream->dep_next; si; si = si->sib_next) {
617 si->dep_prev = stream;
618 if (si->queued) {
619 rv = stream_obq_move(stream, dep_stream, si);
770 nghttp2_stream *dep_prev, *si;
779 for (si = stream->dep_next; si; si = si->sib_next) {
780 si->weight = nghttp2_stream_dep_distributed_weight(stream, si->weight);
782 sum_dep_weight_delta += si->weight;
784 if (si->queued) {
785 rv = stream_obq_move(stream->dep_prev, stream, si);
824 nghttp2_stream *si;
846 for (si = dep_next; si; si = si->sib_next) {
847 si->dep_prev = stream;
848 if (si->queued) {
849 rv = stream_obq_move(stream, dep_stream, si);
941 nghttp2_stream *si;
947 for (si = stream; si->dep_prev; si = si->dep_prev) {
948 si->dep_prev->descendant_last_cycle = si->cycle;