Lines Matching refs:lh

82 int OPENSSL_LH_error(OPENSSL_LHASH *lh);
84 void OPENSSL_LH_free(OPENSSL_LHASH *lh);
85 void OPENSSL_LH_flush(OPENSSL_LHASH *lh);
86 void *OPENSSL_LH_insert(OPENSSL_LHASH *lh, void *data);
87 void *OPENSSL_LH_delete(OPENSSL_LHASH *lh, const void *data);
88 void *OPENSSL_LH_retrieve(OPENSSL_LHASH *lh, const void *data);
89 void OPENSSL_LH_doall(OPENSSL_LHASH *lh, OPENSSL_LH_DOALL_FUNC func);
90 void OPENSSL_LH_doall_arg(OPENSSL_LHASH *lh, OPENSSL_LH_DOALL_FUNCARG func, void *arg);
92 unsigned long OPENSSL_LH_num_items(const OPENSSL_LHASH *lh);
93 unsigned long OPENSSL_LH_get_down_load(const OPENSSL_LHASH *lh);
94 void OPENSSL_LH_set_down_load(OPENSSL_LHASH *lh, unsigned long down_load);
97 void OPENSSL_LH_stats(const OPENSSL_LHASH *lh, FILE *fp);
98 void OPENSSL_LH_node_stats(const OPENSSL_LHASH *lh, FILE *fp);
99 void OPENSSL_LH_node_usage_stats(const OPENSSL_LHASH *lh, FILE *fp);
101 void OPENSSL_LH_stats_bio(const OPENSSL_LHASH *lh, BIO *out);
102 void OPENSSL_LH_node_stats_bio(const OPENSSL_LHASH *lh, BIO *out);
103 void OPENSSL_LH_node_usage_stats_bio(const OPENSSL_LHASH *lh, BIO *out);
146 …used ossl_inline const OPENSSL_LHASH *ossl_check_const_##type##_lh_type(const LHASH_OF(type) *lh) \
148 return (const OPENSSL_LHASH *)lh; \
150 static ossl_unused ossl_inline OPENSSL_LHASH *ossl_check_##type##_lh_type(LHASH_OF(type) *lh) \
152 return (OPENSSL_LHASH *)lh; \
176 static ossl_unused ossl_inline void lh_##type##_free(LHASH_OF(type) *lh) \
178 OPENSSL_LH_free((OPENSSL_LHASH *)lh); \
180 static ossl_unused ossl_inline void lh_##type##_flush(LHASH_OF(type) *lh) \
182 OPENSSL_LH_flush((OPENSSL_LHASH *)lh); \
184 static ossl_unused ossl_inline type *lh_##type##_insert(LHASH_OF(type) *lh, type *d) \
186 return (type *)OPENSSL_LH_insert((OPENSSL_LHASH *)lh, d); \
188 static ossl_unused ossl_inline type *lh_##type##_delete(LHASH_OF(type) *lh, const type *d) \
190 return (type *)OPENSSL_LH_delete((OPENSSL_LHASH *)lh, d); \
192 static ossl_unused ossl_inline type *lh_##type##_retrieve(LHASH_OF(type) *lh, const type *d) \
194 return (type *)OPENSSL_LH_retrieve((OPENSSL_LHASH *)lh, d); \
196 static ossl_unused ossl_inline int lh_##type##_error(LHASH_OF(type) *lh) \
198 return OPENSSL_LH_error((OPENSSL_LHASH *)lh); \
200 static ossl_unused ossl_inline unsigned long lh_##type##_num_items(LHASH_OF(type) *lh) \
202 return OPENSSL_LH_num_items((OPENSSL_LHASH *)lh); \
204 …static ossl_unused ossl_inline void lh_##type##_node_stats_bio(const LHASH_OF(type) *lh, BIO *out)…
206 OPENSSL_LH_node_stats_bio((const OPENSSL_LHASH *)lh, out); \
208 …static ossl_unused ossl_inline void lh_##type##_node_usage_stats_bio(const LHASH_OF(type) *lh, BIO…
210 OPENSSL_LH_node_usage_stats_bio((const OPENSSL_LHASH *)lh, out); \
212 static ossl_unused ossl_inline void lh_##type##_stats_bio(const LHASH_OF(type) *lh, BIO *out) \
214 OPENSSL_LH_stats_bio((const OPENSSL_LHASH *)lh, out); \
216 static ossl_unused ossl_inline unsigned long lh_##type##_get_down_load(LHASH_OF(type) *lh) \
218 return OPENSSL_LH_get_down_load((OPENSSL_LHASH *)lh); \
220 …static ossl_unused ossl_inline void lh_##type##_set_down_load(LHASH_OF(type) *lh, unsigned long dl…
222 OPENSSL_LH_set_down_load((OPENSSL_LHASH *)lh, dl); \
224 static ossl_unused ossl_inline void lh_##type##_doall(LHASH_OF(type) *lh, \
227 OPENSSL_LH_doall((OPENSSL_LHASH *)lh, (OPENSSL_LH_DOALL_FUNC)doall); \
229 static ossl_unused ossl_inline void lh_##type##_doall_arg(LHASH_OF(type) *lh, \
233 OPENSSL_LH_doall_arg((OPENSSL_LHASH *)lh, \
246 lh_##type##_doall_##argtype(LHASH_OF(type) *lh, \
250 OPENSSL_LH_doall_arg((OPENSSL_LHASH *)lh, (OPENSSL_LH_DOALL_FUNCARG)fn, (void *)arg); \