| /src/crypto/external/apache2/openssl/dist/include/internal/ |
| quic_fifd.h | 29 QUIC_CFQ *cfq; member in struct:quic_fifd_st 54 QUIC_CFQ *cfq,
|
| quic_txp.h | 42 QUIC_CFQ *cfq; /* QUIC Control Frame Queue */ member in struct:ossl_quic_tx_packetiser_args_st
|
| /src/crypto/external/apache2/openssl/dist/test/ |
| quic_cfq_test.c | 66 static int check(QUIC_CFQ *cfq) 74 for (i = 0, item = ossl_quic_cfq_get_priority_head(cfq, pn_space);; 103 QUIC_CFQ *cfq = NULL; local 108 if (!TEST_ptr(cfq = ossl_quic_cfq_new())) 115 if (!TEST_ptr(item = ossl_quic_cfq_add_frame(cfq, ref_priority[i], 135 if (!check(cfq)) 139 for (item = ossl_quic_cfq_get_priority_head(cfq, pn_space); 143 ossl_quic_cfq_mark_tx(cfq, item); 147 if (!TEST_ptr_null(ossl_quic_cfq_get_priority_head(cfq, pn_space))) 153 ossl_quic_cfq_mark_lost(cfq, items[pn_space][i], UINT32_MAX) [all...] |
| quic_fifd_test.c | 57 QUIC_CFQ *cfq; member in struct:info_st 167 if (!TEST_ptr(cfq_item = ossl_quic_cfq_add_frame(info->cfq, 10, 173 || !TEST_ptr_eq(cfq_item, ossl_quic_cfq_get_priority_head(info->cfq, pn_space))) 201 /* CFQ item should have been marked as transmitted */ 202 if (!TEST_ptr_null(ossl_quic_cfq_get_priority_head(info->cfq, pn_space))) 220 /* CFQ item must have been released */ 285 /* CFQ item should have been marked as lost */ 286 if (!TEST_ptr_eq(cfq_item, ossl_quic_cfq_get_priority_head(info->cfq, pn_space))) 303 /* CFQ item must have been released */ 339 || !TEST_ptr(info.cfq = ossl_quic_cfq_new() [all...] |
| /src/crypto/external/apache2/openssl/dist/ssl/quic/ |
| quic_cfq.c | 75 * Invariant: A CFQ item is always in exactly one of these lists, never more 78 * Invariant: The list the CFQ item is determined exactly by the state field 172 QUIC_CFQ *cfq = OPENSSL_zalloc(sizeof(*cfq)); local 174 if (cfq == NULL) 177 return cfq; 204 void ossl_quic_cfq_free(QUIC_CFQ *cfq) 206 if (cfq == NULL) 209 free_list_items(&cfq->new_list); 210 free_list_items(&cfq->tx_list) [all...] |
| quic_channel_local.h | 81 QUIC_CFQ *cfq; member in struct:quic_channel_st
|