Home
last modified time | relevance | path

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

/titanic_50/usr/src/lib/libcpc/common/
H A Dsubr.c147 cpc_strhash_t *
150 cpc_strhash_t *p; in __cpc_strhash_alloc()
152 if ((p = malloc(sizeof (cpc_strhash_t))) == NULL) in __cpc_strhash_alloc()
163 __cpc_strhash_free(cpc_strhash_t *hash) in __cpc_strhash_free()
165 cpc_strhash_t *p = hash, *f; in __cpc_strhash_free()
184 __cpc_strhash_add(cpc_strhash_t *hash, char *key) in __cpc_strhash_add()
186 cpc_strhash_t *p, *tmp; in __cpc_strhash_add()
210 __cpc_strhash_next(cpc_strhash_t *hash) in __cpc_strhash_next()
212 cpc_strhash_t *p; in __cpc_strhash_next()
H A Dlibcpc_impl.h128 typedef struct __cpc_strhash cpc_strhash_t; typedef
136 extern cpc_strhash_t *__cpc_strhash_alloc(void);
137 extern void __cpc_strhash_free(cpc_strhash_t *hash);
138 extern int __cpc_strhash_add(cpc_strhash_t *hash, char *key);
139 extern char *__cpc_strhash_next(cpc_strhash_t *hash);
H A Dlibcpc.c820 cpc_strhash_t *hash; in cpc_walk_events_impl()