Home
last modified time | relevance | path

Searched refs:cpc_strhash_t (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libcpc/common/
H A Dsubr.c145 cpc_strhash_t *
148 cpc_strhash_t *p; in __cpc_strhash_alloc()
150 if ((p = malloc(sizeof (cpc_strhash_t))) == NULL) in __cpc_strhash_alloc()
161 __cpc_strhash_free(cpc_strhash_t *hash) in __cpc_strhash_free()
163 cpc_strhash_t *p = hash, *f; in __cpc_strhash_free()
182 __cpc_strhash_add(cpc_strhash_t *hash, char *key) in __cpc_strhash_add()
184 cpc_strhash_t *p, *tmp; in __cpc_strhash_add()
208 __cpc_strhash_next(cpc_strhash_t *hash) in __cpc_strhash_next()
210 cpc_strhash_t *p; in __cpc_strhash_next()
H A Dlibcpc_impl.h126 typedef struct __cpc_strhash cpc_strhash_t; typedef
134 extern cpc_strhash_t *__cpc_strhash_alloc(void);
135 extern void __cpc_strhash_free(cpc_strhash_t *hash);
136 extern int __cpc_strhash_add(cpc_strhash_t *hash, char *key);
137 extern char *__cpc_strhash_next(cpc_strhash_t *hash);
H A Dlibcpc.c821 cpc_strhash_t *hash; in cpc_walk_events_impl()