Symbol: TXE
crypto/openssl/ssl/quic/quic_record_tx.c
1009
TXE *txe = ossl_list_txe_head(&qtx->pending);
crypto/openssl/ssl/quic/quic_record_tx.c
136
TXE *e, *enext;
crypto/openssl/ssl/quic/quic_record_tx.c
217
static TXE *qtx_alloc_txe(size_t alloc_len)
crypto/openssl/ssl/quic/quic_record_tx.c
219
TXE *txe;
crypto/openssl/ssl/quic/quic_record_tx.c
221
if (alloc_len >= SIZE_MAX - sizeof(TXE))
crypto/openssl/ssl/quic/quic_record_tx.c
224
txe = OPENSSL_malloc(sizeof(TXE) + alloc_len);
crypto/openssl/ssl/quic/quic_record_tx.c
241
static TXE *qtx_ensure_free_txe(OSSL_QTX *qtx, size_t alloc_len)
crypto/openssl/ssl/quic/quic_record_tx.c
243
TXE *txe;
crypto/openssl/ssl/quic/quic_record_tx.c
262
static TXE *qtx_resize_txe(OSSL_QTX *qtx, TXE_LIST *txl, TXE *txe, size_t n)
crypto/openssl/ssl/quic/quic_record_tx.c
264
TXE *txe2, *p;
crypto/openssl/ssl/quic/quic_record_tx.c
27
OSSL_LIST_MEMBER(txe, TXE);
crypto/openssl/ssl/quic/quic_record_tx.c
270
if (n >= SIZE_MAX - sizeof(TXE))
crypto/openssl/ssl/quic/quic_record_tx.c
281
txe2 = OPENSSL_realloc(txe, sizeof(TXE) + n);
crypto/openssl/ssl/quic/quic_record_tx.c
306
static TXE *qtx_reserve_txe(OSSL_QTX *qtx, TXE_LIST *txl,
crypto/openssl/ssl/quic/quic_record_tx.c
307
TXE *txe, size_t n)
crypto/openssl/ssl/quic/quic_record_tx.c
318
TXE *txe = ossl_list_txe_head(&qtx->pending);
crypto/openssl/ssl/quic/quic_record_tx.c
328
static void qtx_add_to_pending(OSSL_QTX *qtx, TXE *txe)
crypto/openssl/ssl/quic/quic_record_tx.c
42
DEFINE_LIST_OF(txe, TXE);
crypto/openssl/ssl/quic/quic_record_tx.c
45
static ossl_inline unsigned char *txe_data(const TXE *e)
crypto/openssl/ssl/quic/quic_record_tx.c
461
static int qtx_write_hdr(OSSL_QTX *qtx, const QUIC_PKT_HDR *hdr, TXE *txe,
crypto/openssl/ssl/quic/quic_record_tx.c
488
static int qtx_encrypt_into_txe(OSSL_QTX *qtx, struct iovec_cur *cur, TXE *txe,
crypto/openssl/ssl/quic/quic_record_tx.c
601
static int qtx_write(OSSL_QTX *qtx, const OSSL_QTX_PKT *pkt, TXE *txe,
crypto/openssl/ssl/quic/quic_record_tx.c
730
static TXE *qtx_ensure_cons(OSSL_QTX *qtx)
crypto/openssl/ssl/quic/quic_record_tx.c
732
TXE *txe = qtx->cons;
crypto/openssl/ssl/quic/quic_record_tx.c
756
static int qtx_mutate_write(OSSL_QTX *qtx, const OSSL_QTX_PKT *pkt, TXE *txe,
crypto/openssl/ssl/quic/quic_record_tx.c
800
TXE *txe;
crypto/openssl/ssl/quic/quic_record_tx.c
90
TXE *cons;
crypto/openssl/ssl/quic/quic_record_tx.c
906
TXE *txe = qtx->cons;
crypto/openssl/ssl/quic/quic_record_tx.c
925
static void txe_to_msg(TXE *txe, BIO_MSG *msg)
crypto/openssl/ssl/quic/quic_record_tx.c
942
TXE *txe;