Searched refs:ctf_hash_t (Results 1 – 4 of 4) sorted by relevance
/titanic_41/usr/src/common/ctf/ |
H A D | ctf_impl.h | 78 } ctf_hash_t; typedef 98 ctf_hash_t *ctl_hash; /* pointer to hash table for lookup */ 185 ctf_hash_t ctf_structs; /* hash table of struct types */ 186 ctf_hash_t ctf_unions; /* hash table of union types */ 187 ctf_hash_t ctf_enums; /* hash table of enum types */ 188 ctf_hash_t ctf_names; /* hash table of remaining type names */ 284 extern int ctf_hash_create(ctf_hash_t *, ulong_t); 285 extern int ctf_hash_insert(ctf_hash_t *, ctf_file_t *, ushort_t, uint_t); 286 extern int ctf_hash_define(ctf_hash_t *, ctf_file_t *, ushort_t, uint_t); 287 extern ctf_helem_t *ctf_hash_lookup(ctf_hash_t *, ctf_file_t *, [all …]
|
H A D | ctf_hash.c | 35 ctf_hash_create(ctf_hash_t *hp, ulong_t nelems) in ctf_hash_create() 45 bzero(hp, sizeof (ctf_hash_t)); in ctf_hash_create() 70 ctf_hash_size(const ctf_hash_t *hp) in ctf_hash_size() 95 ctf_hash_insert(ctf_hash_t *hp, ctf_file_t *fp, ushort_t type, uint_t name) in ctf_hash_insert() 132 ctf_hash_define(ctf_hash_t *hp, ctf_file_t *fp, ushort_t type, uint_t name) in ctf_hash_define() 145 ctf_hash_lookup(ctf_hash_t *hp, ctf_file_t *fp, const char *key, size_t len) in ctf_hash_lookup() 167 ctf_hash_destroy(ctf_hash_t *hp) in ctf_hash_destroy()
|
H A D | ctf_create.c | 843 ctf_hash_t *hp = &fp->ctf_structs; in ctf_add_struct() 865 ctf_hash_t *hp = &fp->ctf_unions; in ctf_add_union() 887 ctf_hash_t *hp = &fp->ctf_enums; in ctf_add_enum() 909 ctf_hash_t *hp; in ctf_add_forward() 1268 ctf_hash_t *hp; in ctf_add_type()
|
H A D | ctf_open.c | 209 ctf_hash_t *hp; in init_types()
|