Searched refs:cfq_item (Results 1 – 5 of 5) sorted by relevance
| /src/crypto/openssl/ssl/quic/ |
| H A D | quic_fifd.c | 74 QUIC_CFQ_ITEM *cfq_item, *cfq_item_next; in on_acked() local 107 for (cfq_item = pkt->retx_head; cfq_item != NULL; cfq_item = cfq_item_next) { in on_acked() 108 cfq_item_next = cfq_item->pkt_next; in on_acked() 109 ossl_quic_cfq_release(fifd->cfq, cfq_item); in on_acked() 130 QUIC_CFQ_ITEM *cfq_item, *cfq_item_next; in on_lost() local 193 for (cfq_item = pkt->retx_head; cfq_item != NULL; cfq_item = cfq_item_next) { in on_lost() 194 cfq_item_next = cfq_item->pkt_next; in on_lost() 195 ossl_quic_cfq_mark_lost(fifd->cfq, cfq_item, UINT32_MAX); in on_lost() 236 QUIC_CFQ_ITEM *cfq_item, *cfq_item_next; in on_discarded() local 244 for (cfq_item = pkt->retx_head; cfq_item != NULL; cfq_item = cfq_item_next) { in on_discarded() [all …]
|
| H A D | quic_txp.c | 1429 QUIC_CFQ_ITEM *cfq_item; in txp_should_try_staging() local 1531 for (cfq_item = ossl_quic_cfq_get_priority_head(txp->args.cfq, pn_space); in txp_should_try_staging() 1532 cfq_item != NULL; in txp_should_try_staging() 1533 cfq_item = ossl_quic_cfq_item_get_priority_next(cfq_item, pn_space)) { in txp_should_try_staging() 1534 uint64_t frame_type = ossl_quic_cfq_item_get_frame_type(cfq_item); in txp_should_try_staging() 2669 QUIC_CFQ_ITEM *cfq_item; in txp_generate_for_el() local 2788 for (cfq_item = ossl_quic_cfq_get_priority_head(txp->args.cfq, pn_space); in txp_generate_for_el() 2789 cfq_item != NULL; in txp_generate_for_el() 2790 cfq_item = ossl_quic_cfq_item_get_priority_next(cfq_item, pn_space)) { in txp_generate_for_el() 2791 uint64_t frame_type = ossl_quic_cfq_item_get_frame_type(cfq_item); in txp_generate_for_el() [all …]
|
| H A D | quic_channel.c | 567 QUIC_CFQ_ITEM *cfq_item; in ossl_quic_channel_schedule_new_token() local 590 cfq_item = ossl_quic_cfq_add_frame(ch->cfq, 1, in ossl_quic_channel_schedule_new_token() 596 if (cfq_item == NULL) in ossl_quic_channel_schedule_new_token()
|
| /src/crypto/openssl/test/ |
| H A D | quic_fifd_test.c | 121 QUIC_CFQ_ITEM *cfq_item = NULL; in test_generic() local 167 if (!TEST_ptr(cfq_item = ossl_quic_cfq_add_frame(info->cfq, 10, in test_generic() 173 || !TEST_ptr_eq(cfq_item, ossl_quic_cfq_get_priority_head(info->cfq, pn_space))) in test_generic() 176 ossl_quic_txpim_pkt_add_cfq_item(pkt, cfq_item); in test_generic() 286 if (!TEST_ptr_eq(cfq_item, ossl_quic_cfq_get_priority_head(info->cfq, pn_space))) in test_generic()
|
| H A D | quic_txp_test.c | 429 QUIC_CFQ_ITEM *cfq_item; in schedule_cfq_new_conn_id() local 456 if (!TEST_ptr(cfq_item = ossl_quic_cfq_add_frame(h->args.cfq, 1, in schedule_cfq_new_conn_id() 510 QUIC_CFQ_ITEM *cfq_item; in schedule_cfq_new_token() local 532 if (!TEST_ptr(cfq_item = ossl_quic_cfq_add_frame(h->args.cfq, 1, in schedule_cfq_new_token()
|