Symbol: TXE
crypto/openssl/ssl/quic/quic_record_tx.c
1029
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 *txe, size_t n)
crypto/openssl/ssl/quic/quic_record_tx.c
264
TXE *txe2;
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
285
txe2 = OPENSSL_realloc(txe, sizeof(TXE) + n);
crypto/openssl/ssl/quic/quic_record_tx.c
300
static TXE *qtx_reserve_txe(OSSL_QTX *qtx, TXE *txe, size_t n)
crypto/openssl/ssl/quic/quic_record_tx.c
311
TXE *txe = ossl_list_txe_head(&qtx->pending);
crypto/openssl/ssl/quic/quic_record_tx.c
321
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
454
static int qtx_write_hdr(OSSL_QTX *qtx, const QUIC_PKT_HDR *hdr, TXE *txe,
crypto/openssl/ssl/quic/quic_record_tx.c
481
static int qtx_encrypt_into_txe(OSSL_QTX *qtx, struct iovec_cur *cur, TXE *txe,
crypto/openssl/ssl/quic/quic_record_tx.c
594
static int qtx_write(OSSL_QTX *qtx, const OSSL_QTX_PKT *pkt, TXE *txe,
crypto/openssl/ssl/quic/quic_record_tx.c
723
static TXE *qtx_ensure_cons(OSSL_QTX *qtx)
crypto/openssl/ssl/quic/quic_record_tx.c
725
TXE *txe = qtx->cons;
crypto/openssl/ssl/quic/quic_record_tx.c
749
static int qtx_mutate_write(OSSL_QTX *qtx, const OSSL_QTX_PKT *pkt, TXE *txe,
crypto/openssl/ssl/quic/quic_record_tx.c
793
TXE *txe;
crypto/openssl/ssl/quic/quic_record_tx.c
90
TXE *cons;
crypto/openssl/ssl/quic/quic_record_tx.c
926
TXE *txe = qtx->cons;
crypto/openssl/ssl/quic/quic_record_tx.c
945
static void txe_to_msg(TXE *txe, BIO_MSG *msg)
crypto/openssl/ssl/quic/quic_record_tx.c
962
TXE *txe;