Symbol: QUIC_TXFC
crypto/openssl/include/internal/quic_fc.h
108
int ossl_quic_txfc_has_become_blocked(QUIC_TXFC *txfc, int clear);
crypto/openssl/include/internal/quic_fc.h
114
uint64_t ossl_quic_txfc_get_cwm(QUIC_TXFC *txfc);
crypto/openssl/include/internal/quic_fc.h
120
uint64_t ossl_quic_txfc_get_swm(QUIC_TXFC *txfc);
crypto/openssl/include/internal/quic_fc.h
27
QUIC_TXFC *parent; /* stream-level iff non-NULL */
crypto/openssl/include/internal/quic_fc.h
37
int ossl_quic_txfc_init(QUIC_TXFC *txfc, QUIC_TXFC *conn_txfc);
crypto/openssl/include/internal/quic_fc.h
43
QUIC_TXFC *ossl_quic_txfc_get_parent(QUIC_TXFC *txfc);
crypto/openssl/include/internal/quic_fc.h
55
int ossl_quic_txfc_bump_cwm(QUIC_TXFC *txfc, uint64_t cwm);
crypto/openssl/include/internal/quic_fc.h
67
uint64_t ossl_quic_txfc_get_credit(QUIC_TXFC *txfc, uint64_t consumed);
crypto/openssl/include/internal/quic_fc.h
75
uint64_t ossl_quic_txfc_get_credit_local(QUIC_TXFC *txfc, uint64_t consumed);
crypto/openssl/include/internal/quic_fc.h
92
int ossl_quic_txfc_consume_credit(QUIC_TXFC *txfc, uint64_t num_bytes);
crypto/openssl/include/internal/quic_fc.h
99
int ossl_quic_txfc_consume_credit_local(QUIC_TXFC *txfc, uint64_t num_bytes);
crypto/openssl/include/internal/quic_stream_map.h
155
QUIC_TXFC txfc; /* NULL if RX-only */
crypto/openssl/include/internal/quic_txp.h
45
QUIC_TXFC *conn_txfc; /* QUIC Connection-Level TX Flow Controller */
crypto/openssl/ssl/quic/quic_channel_local.h
86
QUIC_TXFC conn_txfc;
crypto/openssl/ssl/quic/quic_fc.c
101
int ossl_quic_txfc_has_become_blocked(QUIC_TXFC *txfc, int clear)
crypto/openssl/ssl/quic/quic_fc.c
111
uint64_t ossl_quic_txfc_get_cwm(QUIC_TXFC *txfc)
crypto/openssl/ssl/quic/quic_fc.c
116
uint64_t ossl_quic_txfc_get_swm(QUIC_TXFC *txfc)
crypto/openssl/ssl/quic/quic_fc.c
23
int ossl_quic_txfc_init(QUIC_TXFC *txfc, QUIC_TXFC *conn_txfc)
crypto/openssl/ssl/quic/quic_fc.c
35
QUIC_TXFC *ossl_quic_txfc_get_parent(QUIC_TXFC *txfc)
crypto/openssl/ssl/quic/quic_fc.c
40
int ossl_quic_txfc_bump_cwm(QUIC_TXFC *txfc, uint64_t cwm)
crypto/openssl/ssl/quic/quic_fc.c
49
uint64_t ossl_quic_txfc_get_credit_local(QUIC_TXFC *txfc, uint64_t consumed)
crypto/openssl/ssl/quic/quic_fc.c
55
uint64_t ossl_quic_txfc_get_credit(QUIC_TXFC *txfc, uint64_t consumed)
crypto/openssl/ssl/quic/quic_fc.c
71
int ossl_quic_txfc_consume_credit_local(QUIC_TXFC *txfc, uint64_t num_bytes)
crypto/openssl/ssl/quic/quic_fc.c
88
int ossl_quic_txfc_consume_credit(QUIC_TXFC *txfc, uint64_t num_bytes)
crypto/openssl/ssl/quic/quic_txp.c
2218
QUIC_TXFC *stream_txfc,
crypto/openssl/ssl/quic/quic_txp.c
2273
QUIC_TXFC *stream_txfc,
crypto/openssl/test/quic_fc_test.c
17
QUIC_TXFC conn_txfc, stream_txfc, *txfc, *parent_txfc;
crypto/openssl/test/quic_txp_test.c
62
QUIC_TXFC conn_txfc;