• Home
  • Raw
  • Download

Lines Matching refs:si

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