Home
last modified time | relevance | path

Searched refs:OSSL_LIST (Results 1 – 12 of 12) sorted by relevance

/src/crypto/openssl/doc/internal/man3/
H A DDEFINE_LIST_OF.pod5 DEFINE_LIST_OF, OSSL_LIST_MEMBER, OSSL_LIST,
20 OSSL_LIST(name);
24 void ossl_list_TYPE_init(OSSL_LIST(name) *list);
27 int ossl_list_TYPE_is_empty(const OSSL_LIST(name) *list);
28 size_t ossl_list_TYPE_num(const OSSL_LIST(name) *list);
29 type *ossl_list_TYPE_head(const OSSL_LIST(name) *list);
30 type *ossl_list_TYPE_tail(const OSSL_LIST(name) *list);
35 void ossl_list_TYPE_remove(OSSL_LIST(name) *list, type *elem);
36 void ossl_list_TYPE_insert_head(OSSL_LIST(name) *list, type *elem);
37 void ossl_list_TYPE_insert_tail(OSSL_LIST(name) *list, type *elem);
[all …]
/src/crypto/openssl/include/internal/
H A Dlist.h52 #define OSSL_LIST(name) OSSL_LIST_##name macro
62 typedef struct ossl_list_st_##name OSSL_LIST(name); \
70 ossl_list_##name##_init(OSSL_LIST(name) * list) \
81 ossl_list_##name##_is_empty(const OSSL_LIST(name) * list) \
86 ossl_list_##name##_num(const OSSL_LIST(name) * list) \
91 ossl_list_##name##_head(const OSSL_LIST(name) * list) \
98 ossl_list_##name##_tail(const OSSL_LIST(name) * list) \
123 ossl_list_##name##_remove(OSSL_LIST(name) * list, type * elem) \
140 ossl_list_##name##_insert_head(OSSL_LIST(name) * list, type * elem) \
154 ossl_list_##name##_insert_tail(OSSL_LIST(name) * list, type * elem) \
[all …]
H A Dquic_reactor_wait_ctx.h89 OSSL_LIST(quic_reactor_wait_slot)
H A Duint_set.h39 typedef OSSL_LIST(uint_set) UINT_SET;
H A Dquic_demux.h156 typedef OSSL_LIST(urxe) QUIC_URXE_LIST;
/src/crypto/openssl/ssl/quic/
H A Dquic_port_local.h67 OSSL_LIST(ch)
74 OSSL_LIST(incoming_ch)
H A Dquic_engine_local.h51 OSSL_LIST(port)
H A Dquic_rcidm.c213 OSSL_LIST(retiring)
H A Dquic_record_tx.c43 typedef OSSL_LIST(txe) TXE_LIST;
H A Dquic_record_rx.c83 typedef OSSL_LIST(rxe) RXE_LIST;
H A Dquic_ackm.c33 OSSL_LIST(tx_history)
/src/crypto/openssl/test/
H A Dlist_test.c33 OSSL_LIST(fizz) in test_fizzbuzz()
35 OSSL_LIST(buzz) in test_fizzbuzz()
100 OSSL_LIST(int) in test_insert()