Symbol: QUIC_RXFC
crypto/openssl/include/internal/quic_fc.h
141
QUIC_RXFC *parent;
crypto/openssl/include/internal/quic_fc.h
153
int ossl_quic_rxfc_init(QUIC_RXFC *rxfc, QUIC_RXFC *conn_rxfc,
crypto/openssl/include/internal/quic_fc.h
164
int ossl_quic_rxfc_init_standalone(QUIC_RXFC *rxfc,
crypto/openssl/include/internal/quic_fc.h
173
QUIC_RXFC *ossl_quic_rxfc_get_parent(QUIC_RXFC *rxfc);
crypto/openssl/include/internal/quic_fc.h
178
void ossl_quic_rxfc_set_max_window_size(QUIC_RXFC *rxfc,
crypto/openssl/include/internal/quic_fc.h
199
int ossl_quic_rxfc_on_rx_stream_frame(QUIC_RXFC *rxfc,
crypto/openssl/include/internal/quic_fc.h
219
int ossl_quic_rxfc_on_retire(QUIC_RXFC *rxfc,
crypto/openssl/include/internal/quic_fc.h
232
uint64_t ossl_quic_rxfc_get_cwm(const QUIC_RXFC *rxfc);
crypto/openssl/include/internal/quic_fc.h
239
uint64_t ossl_quic_rxfc_get_swm(const QUIC_RXFC *rxfc);
crypto/openssl/include/internal/quic_fc.h
245
uint64_t ossl_quic_rxfc_get_rwm(const QUIC_RXFC *rxfc);
crypto/openssl/include/internal/quic_fc.h
251
uint64_t ossl_quic_rxfc_get_credit(const QUIC_RXFC *rxfc);
crypto/openssl/include/internal/quic_fc.h
257
int ossl_quic_rxfc_has_cwm_changed(QUIC_RXFC *rxfc, int clear);
crypto/openssl/include/internal/quic_fc.h
272
int ossl_quic_rxfc_get_error(QUIC_RXFC *rxfc, int clear);
crypto/openssl/include/internal/quic_fc.h
279
int ossl_quic_rxfc_get_final_size(const QUIC_RXFC *rxfc, uint64_t *final_size);
crypto/openssl/include/internal/quic_stream.h
324
QUIC_RSTREAM *ossl_quic_rstream_new(QUIC_RXFC *rxfc,
crypto/openssl/include/internal/quic_stream_map.h
156
QUIC_RXFC rxfc; /* NULL if TX-only */
crypto/openssl/include/internal/quic_stream_map.h
564
QUIC_RXFC *max_streams_bidi_rxfc;
crypto/openssl/include/internal/quic_stream_map.h
565
QUIC_RXFC *max_streams_uni_rxfc;
crypto/openssl/include/internal/quic_stream_map.h
585
QUIC_RXFC *max_streams_bidi_rxfc,
crypto/openssl/include/internal/quic_stream_map.h
586
QUIC_RXFC *max_streams_uni_rxfc,
crypto/openssl/include/internal/quic_txp.h
46
QUIC_RXFC *conn_rxfc; /* QUIC Connection-Level RX Flow Controller */
crypto/openssl/include/internal/quic_txp.h
47
QUIC_RXFC *max_streams_bidi_rxfc; /* QUIC RXFC for MAX_STREAMS generation */
crypto/openssl/include/internal/quic_txp.h
48
QUIC_RXFC *max_streams_uni_rxfc;
crypto/openssl/ssl/quic/quic_channel.c
3821
static const QUIC_RXFC *ch_get_remote_stream_count_rxfc(const QUIC_CHANNEL *ch,
crypto/openssl/ssl/quic/quic_channel_local.h
87
QUIC_RXFC conn_rxfc, crypto_rxfc[QUIC_PN_SPACE_NUM];
crypto/openssl/ssl/quic/quic_channel_local.h
88
QUIC_RXFC max_streams_bidi_rxfc, max_streams_uni_rxfc;
crypto/openssl/ssl/quic/quic_fc.c
126
int ossl_quic_rxfc_init(QUIC_RXFC *rxfc, QUIC_RXFC *conn_rxfc,
crypto/openssl/ssl/quic/quic_fc.c
153
int ossl_quic_rxfc_init_standalone(QUIC_RXFC *rxfc,
crypto/openssl/ssl/quic/quic_fc.c
167
QUIC_RXFC *ossl_quic_rxfc_get_parent(QUIC_RXFC *rxfc)
crypto/openssl/ssl/quic/quic_fc.c
172
void ossl_quic_rxfc_set_max_window_size(QUIC_RXFC *rxfc,
crypto/openssl/ssl/quic/quic_fc.c
178
static void rxfc_start_epoch(QUIC_RXFC *rxfc)
crypto/openssl/ssl/quic/quic_fc.c
184
static int on_rx_controlled_bytes(QUIC_RXFC *rxfc, uint64_t num_bytes)
crypto/openssl/ssl/quic/quic_fc.c
199
int ossl_quic_rxfc_on_rx_stream_frame(QUIC_RXFC *rxfc, uint64_t end, int is_fin)
crypto/openssl/ssl/quic/quic_fc.c
234
static int rxfc_cwm_bump_desired(QUIC_RXFC *rxfc)
crypto/openssl/ssl/quic/quic_fc.c
256
static int rxfc_should_bump_window_size(QUIC_RXFC *rxfc, OSSL_TIME rtt)
crypto/openssl/ssl/quic/quic_fc.c
290
static void rxfc_adjust_window_size(QUIC_RXFC *rxfc, uint64_t min_window_size,
crypto/openssl/ssl/quic/quic_fc.c
310
static void rxfc_update_cwm(QUIC_RXFC *rxfc, uint64_t min_window_size,
crypto/openssl/ssl/quic/quic_fc.c
327
static int rxfc_on_retire(QUIC_RXFC *rxfc, uint64_t num_bytes,
crypto/openssl/ssl/quic/quic_fc.c
340
int ossl_quic_rxfc_on_retire(QUIC_RXFC *rxfc,
crypto/openssl/ssl/quic/quic_fc.c
362
uint64_t ossl_quic_rxfc_get_cwm(const QUIC_RXFC *rxfc)
crypto/openssl/ssl/quic/quic_fc.c
367
uint64_t ossl_quic_rxfc_get_swm(const QUIC_RXFC *rxfc)
crypto/openssl/ssl/quic/quic_fc.c
372
uint64_t ossl_quic_rxfc_get_rwm(const QUIC_RXFC *rxfc)
crypto/openssl/ssl/quic/quic_fc.c
377
uint64_t ossl_quic_rxfc_get_credit(const QUIC_RXFC *rxfc)
crypto/openssl/ssl/quic/quic_fc.c
382
int ossl_quic_rxfc_has_cwm_changed(QUIC_RXFC *rxfc, int clear)
crypto/openssl/ssl/quic/quic_fc.c
392
int ossl_quic_rxfc_get_error(QUIC_RXFC *rxfc, int clear)
crypto/openssl/ssl/quic/quic_fc.c
402
int ossl_quic_rxfc_get_final_size(const QUIC_RXFC *rxfc, uint64_t *final_size)
crypto/openssl/ssl/quic/quic_rstream.c
18
QUIC_RXFC *rxfc;
crypto/openssl/ssl/quic/quic_rstream.c
24
QUIC_RSTREAM *ossl_quic_rstream_new(QUIC_RXFC *rxfc,
crypto/openssl/ssl/quic/quic_rx_depack.c
270
QUIC_RXFC *rxfc;
crypto/openssl/ssl/quic/quic_rx_depack.c
375
QUIC_RXFC *max_streams_fc;
crypto/openssl/ssl/quic/quic_stream_map.c
745
static QUIC_RXFC *qsm_get_max_streams_rxfc(QUIC_STREAM_MAP *qsm, QUIC_STREAM *s)
crypto/openssl/ssl/quic/quic_stream_map.c
756
QUIC_RXFC *max_streams_rxfc;
crypto/openssl/ssl/quic/quic_stream_map.c
91
QUIC_RXFC *max_streams_bidi_rxfc,
crypto/openssl/ssl/quic/quic_stream_map.c
92
QUIC_RXFC *max_streams_uni_rxfc,
crypto/openssl/test/quic_fc_test.c
480
QUIC_RXFC conn_rxfc = { 0 }, stream_rxfc[MAX_STREAMS] = { 0 }; /* coverity */
crypto/openssl/test/quic_txp_test.c
63
QUIC_RXFC conn_rxfc, stream_rxfc;
crypto/openssl/test/quic_txp_test.c
64
QUIC_RXFC max_streams_bidi_rxfc, max_streams_uni_rxfc;