Searched refs:dict_hdl_t (Results 1 – 5 of 5) sorted by relevance
/titanic_44/usr/src/lib/libpool/common/ |
H A D | dict.h | 36 typedef struct dict_hdl dict_hdl_t; typedef 48 extern void dict_free(dict_hdl_t **); 49 extern uint64_t dict_length(dict_hdl_t *); 50 extern dict_hdl_t *dict_new(int (*)(const void *, const void *), 57 extern void *dict_get(dict_hdl_t *, const void *); 58 extern void *dict_put(dict_hdl_t *, const void *, void *); 59 extern void *dict_remove(dict_hdl_t *, const void *); 61 extern void dict_map(dict_hdl_t *,
|
H A D | dict.c | 238 dict_length(dict_hdl_t *hdl) in dict_length() 247 dict_free(dict_hdl_t **hdl) in dict_free() 269 dict_hdl_t * 273 dict_hdl_t *hdl; in dict_new() 275 if ((hdl = calloc(1, sizeof (dict_hdl_t))) == NULL) in dict_new() 293 dict_get(dict_hdl_t *hdl, const void *key) in dict_get() 311 dict_put(dict_hdl_t *hdl, const void *key, void *value) in dict_put() 341 dict_remove(dict_hdl_t *hdl, const void *key) in dict_remove() 371 dict_map(dict_hdl_t *hdl, void (*apply)(const void *, void **, void *), in dict_map()
|
H A D | pool_kernel_impl.h | 169 dict_hdl_t *pkc_elements; /* Elements */ 171 dict_hdl_t *pkc_leaks; /* Elements */
|
H A D | pool_kernel.c | 694 dict_hdl_t *dead_map = (dict_hdl_t *)cl; in find_dead_elems() 717 dict_hdl_t *dead_map; in pool_knl_update() 2215 dict_hdl_t *map = (dict_hdl_t *)cl; in pool_knl_elem_printf_cb()
|
H A D | pool_internal.c | 59 static dict_hdl_t *_pv_atoms; /* pool_value_t atoms */
|