Lines Matching refs:stream_idx

226     size_t          stream_idx;  member
236 #define RX_OP_INIT_STREAM(stream_idx, init_window_size, max_window_size) \ argument
237 { RX_OPC_INIT_STREAM, (stream_idx), (init_window_size), (max_window_size) },
238 #define RX_OP_RX(stream_idx, end, is_fin) \ argument
239 { RX_OPC_RX, (stream_idx), (end), (is_fin) },
240 #define RX_OP_RETIRE(stream_idx, num_bytes, rtt, expect_fail) \ argument
241 { RX_OPC_RETIRE, (stream_idx), (num_bytes), (rtt), (expect_fail) },
501 if (!TEST_size_t_lt(op->stream_idx, OSSL_NELEM(stream_rxfc)) in run_rxfc_script()
505 if (!TEST_true(ossl_quic_rxfc_init(&stream_rxfc[op->stream_idx], in run_rxfc_script()
511 stream_init_done[op->stream_idx] = 1; in run_rxfc_script()
515 if (!TEST_true(conn_init_done && op->stream_idx < OSSL_NELEM(stream_rxfc) in run_rxfc_script()
516 && stream_init_done[op->stream_idx])) in run_rxfc_script()
519 if (!TEST_true(ossl_quic_rxfc_on_rx_stream_frame(&stream_rxfc[op->stream_idx], in run_rxfc_script()
527 if (!TEST_true(conn_init_done && op->stream_idx < OSSL_NELEM(stream_rxfc) in run_rxfc_script()
528 && stream_init_done[op->stream_idx])) in run_rxfc_script()
531 if (!TEST_int_eq(ossl_quic_rxfc_on_retire(&stream_rxfc[op->stream_idx], in run_rxfc_script()
546 if (!TEST_true(op->stream_idx < OSSL_NELEM(stream_rxfc) in run_rxfc_script()
547 && stream_init_done[op->stream_idx])) in run_rxfc_script()
549 if (!TEST_uint64_t_eq(ossl_quic_rxfc_get_cwm(&stream_rxfc[op->stream_idx]), in run_rxfc_script()
561 if (!TEST_true(op->stream_idx < OSSL_NELEM(stream_rxfc) in run_rxfc_script()
562 && stream_init_done[op->stream_idx])) in run_rxfc_script()
564 if (!TEST_uint64_t_eq(ossl_quic_rxfc_get_swm(&stream_rxfc[op->stream_idx]), in run_rxfc_script()
576 if (!TEST_true(op->stream_idx < OSSL_NELEM(stream_rxfc) in run_rxfc_script()
577 && stream_init_done[op->stream_idx])) in run_rxfc_script()
579 if (!TEST_uint64_t_eq(ossl_quic_rxfc_get_rwm(&stream_rxfc[op->stream_idx]), in run_rxfc_script()
592 if (!TEST_true(op->stream_idx < OSSL_NELEM(stream_rxfc) in run_rxfc_script()
593 && stream_init_done[op->stream_idx])) in run_rxfc_script()
595 if (!TEST_int_eq(ossl_quic_rxfc_has_cwm_changed(&stream_rxfc[op->stream_idx], in run_rxfc_script()
609 if (!TEST_true(op->stream_idx < OSSL_NELEM(stream_rxfc) in run_rxfc_script()
610 && stream_init_done[op->stream_idx])) in run_rxfc_script()
612 if (!TEST_int_eq(ossl_quic_rxfc_get_error(&stream_rxfc[op->stream_idx], in run_rxfc_script()