HomeSort by: relevance | last modified time | path
    Searched refs:cfq (Results 1 - 12 of 12) sorted by relevancy

  /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_fifd.c 17 QUIC_CFQ *cfq,
42 if (cfq == NULL || ackm == NULL || txpim == NULL
46 fifd->cfq = cfq;
109 ossl_quic_cfq_release(fifd->cfq, cfq_item);
195 ossl_quic_cfq_mark_lost(fifd->cfq, cfq_item, UINT32_MAX);
246 ossl_quic_cfq_release(fifd->cfq, cfq_item);
270 * Mark the CFQ items which have been added to this packet as having been
276 ossl_quic_cfq_mark_tx(fifd->cfq, cfq_item);
quic_channel_local.h 81 QUIC_CFQ *cfq; member in struct:quic_channel_st
quic_channel.c 196 ch->cfq = ossl_quic_cfq_new();
197 if (ch->cfq == NULL)
264 txp_args.cfq = ch->cfq;
402 ossl_quic_cfq_free(ch->cfq);
590 cfq_item = ossl_quic_cfq_add_frame(ch->cfq, 1,
3255 if (ossl_quic_cfq_add_frame(ch->cfq, 1, QUIC_PN_SPACE_APP,
quic_txp.c 545 || args->cfq == NULL
565 txp->args.cfq, txp->args.ackm, txp->args.txpim,
1529 /* Does the CFQ have any frames queued for this PN space? */
1531 for (cfq_item = ossl_quic_cfq_get_priority_head(txp->args.cfq, pn_space);
2788 for (cfq_item = ossl_quic_cfq_get_priority_head(txp->args.cfq, pn_space);
quic_rx_depack.c 975 if (!ossl_quic_cfq_add_frame(ch->cfq, 0, QUIC_PN_SPACE_APP,
  /src/crypto/external/apache2/openssl/dist/include/internal/
quic_cfq.h 23 * The CFQ item structure has a public and a private part. This structure
30 * These fields are not used by the CFQ, but are a convenience to assist the
45 /* Returns the frame type of a CFQ item. */
48 /* Returns a pointer to the encoded buffer of a CFQ item. */
54 /* Returns the CFQ item state, a QUIC_CFQ_STATE_* value. */
57 /* Returns the PN space for the CFQ item. */
69 void ossl_quic_cfq_free(QUIC_CFQ *cfq);
77 * Enqueue a frame to the CFQ.
81 * free_cb is called by the CFQ when the buffer is no longer needed;
102 QUIC_CFQ_ITEM *ossl_quic_cfq_add_frame(QUIC_CFQ *cfq,
    [all...]
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...]
quic_txp_test.c 109 ossl_quic_cfq_free(h->args.cfq);
156 if (!TEST_ptr(h->args.cfq = ossl_quic_cfq_new()))
420 /* 4. 1-RTT, CFQ (NEW_CONN_ID) */
456 if (!TEST_ptr(cfq_item = ossl_quic_cfq_add_frame(h->args.cfq, 1,
502 /* 5. 1-RTT, CFQ (NEW_TOKEN) */
532 if (!TEST_ptr(cfq_item = ossl_quic_cfq_add_frame(h->args.cfq, 1,

Completed in 45 milliseconds