Searched refs:ctf_hash_t (Results 1 – 4 of 4) sorted by relevance
/titanic_50/usr/src/common/ctf/ |
H A D | ctf_impl.h | 81 } ctf_hash_t; typedef 105 ctf_hash_t *ctl_hash; /* pointer to hash table for lookup */ 206 ctf_hash_t ctf_structs; /* hash table of struct types */ 207 ctf_hash_t ctf_unions; /* hash table of union types */ 208 ctf_hash_t ctf_enums; /* hash table of enum types */ 209 ctf_hash_t ctf_names; /* hash table of remaining type names */ 261 extern int ctf_hash_create(ctf_hash_t *, ulong_t); 262 extern int ctf_hash_insert(ctf_hash_t *, ctf_file_t *, ushort_t, uint_t); 263 extern int ctf_hash_define(ctf_hash_t *, ctf_file_t *, ushort_t, uint_t); 264 extern ctf_helem_t *ctf_hash_lookup(ctf_hash_t *, ctf_file_t *, [all …]
|
H A D | ctf_hash.c | 34 ctf_hash_create(ctf_hash_t *hp, ulong_t nelems) in ctf_hash_create() 44 bzero(hp, sizeof (ctf_hash_t)); in ctf_hash_create() 69 ctf_hash_size(const ctf_hash_t *hp) in ctf_hash_size() 94 ctf_hash_insert(ctf_hash_t *hp, ctf_file_t *fp, ushort_t type, uint_t name) in ctf_hash_insert() 131 ctf_hash_define(ctf_hash_t *hp, ctf_file_t *fp, ushort_t type, uint_t name) in ctf_hash_define() 144 ctf_hash_lookup(ctf_hash_t *hp, ctf_file_t *fp, const char *key, size_t len) in ctf_hash_lookup() 166 ctf_hash_destroy(ctf_hash_t *hp) in ctf_hash_destroy()
|
H A D | ctf_create.c | 1180 ctf_hash_t *hp = &fp->ctf_structs; in ctf_add_struct() 1216 ctf_hash_t *hp = &fp->ctf_unions; in ctf_add_union() 1252 ctf_hash_t *hp = &fp->ctf_enums; in ctf_add_enum() 1288 ctf_hash_t *hp; in ctf_add_forward() 1698 ctf_hash_t *hp; in ctf_add_type()
|
H A D | ctf_open.c | 209 ctf_hash_t *hp; in init_types()
|