Lines Matching refs:OSSL_LIST
5 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);
38 void ossl_list_TYPE_insert_before(OSSL_LIST(name) *list, type *existing,
40 void ossl_list_TYPE_insert_after(OSSL_LIST(name) *list, type *existing, type *elem);
50 The OSSL_LIST() macro returns the name for a list of the specified
55 by B<OSSL_LIST>(B<I<TYPE>>) and each function name begins with
117 OSSL_LIST(new_items) new;