OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:txpim
(Results
1 - 6
of
6
) sorted by relevancy
/src/crypto/external/apache2/openssl/dist/test/
quic_txpim_test.c
17
QUIC_TXPIM *
txpim
;
local
23
if (!TEST_ptr(
txpim
= ossl_quic_txpim_new()))
27
if (!TEST_ptr(pkts[i] = ossl_quic_txpim_pkt_alloc(
txpim
)))
56
if (
txpim
!= NULL && pkts[i] != NULL)
57
ossl_quic_txpim_pkt_release(
txpim
, pkts[i]);
59
ossl_quic_txpim_free(
txpim
);
quic_fifd_test.c
58
QUIC_TXPIM *
txpim
;
member in struct:info_st
73
* Test that a submitted packet, on ack, releases the
TXPIM
packet
132
if (!TEST_ptr(pkt = ossl_quic_txpim_pkt_alloc(info->
txpim
)))
232
if (!TEST_ptr(pkt2 = ossl_quic_txpim_pkt_alloc(info->
txpim
)))
313
/*
TXPIM
must have been released */
314
if (!TEST_size_t_eq(ossl_quic_txpim_get_in_use(info->
txpim
), 0))
340
|| !TEST_ptr(info.
txpim
= ossl_quic_txpim_new())
342
info.
txpim
,
364
ossl_quic_txpim_free(info.
txpim
);
/src/crypto/external/apache2/openssl/dist/include/internal/
quic_fifd.h
31
QUIC_TXPIM *
txpim
;
member in struct:quic_fifd_st
56
QUIC_TXPIM *
txpim
,
quic_txp.h
41
QUIC_TXPIM *
txpim
; /* QUIC TX'd Packet Information Manager */
member in struct:ossl_quic_tx_packetiser_args_st
/src/crypto/external/apache2/openssl/dist/ssl/quic/
quic_txpim.c
36
QUIC_TXPIM *
txpim
= OPENSSL_zalloc(sizeof(*
txpim
));
local
38
if (
txpim
== NULL)
41
return
txpim
;
58
void ossl_quic_txpim_free(QUIC_TXPIM *
txpim
)
60
if (
txpim
== NULL)
63
assert(
txpim
->in_use == 0);
64
free_list(&
txpim
->free_list);
65
OPENSSL_free(
txpim
);
92
static QUIC_TXPIM_PKT_EX *txpim_get_free(QUIC_TXPIM *
txpim
)
[
all
...]
quic_channel_local.h
80
QUIC_TXPIM *
txpim
;
member in struct:quic_channel_st
Completed in 26 milliseconds
Indexes created Sat Feb 28 05:31:39 UTC 2026