Symbol: ctf_hash_t
usr/src/common/ctf/ctf_create.c
1194
ctf_hash_t *hp = &fp->ctf_structs;
usr/src/common/ctf/ctf_create.c
1230
ctf_hash_t *hp = &fp->ctf_unions;
usr/src/common/ctf/ctf_create.c
1270
ctf_hash_t *hp = &fp->ctf_enums;
usr/src/common/ctf/ctf_create.c
1312
ctf_hash_t *hp;
usr/src/common/ctf/ctf_create.c
1719
ctf_hash_t *hp;
usr/src/common/ctf/ctf_hash.c
133
ctf_hash_define(ctf_hash_t *hp, ctf_file_t *fp, ushort_t type, uint_t name)
usr/src/common/ctf/ctf_hash.c
146
ctf_hash_lookup(ctf_hash_t *hp, ctf_file_t *fp, const char *key, size_t len)
usr/src/common/ctf/ctf_hash.c
168
ctf_hash_destroy(ctf_hash_t *hp)
usr/src/common/ctf/ctf_hash.c
182
ctf_hash_dump(const char *tag, ctf_hash_t *hp, ctf_file_t *fp)
usr/src/common/ctf/ctf_hash.c
36
ctf_hash_create(ctf_hash_t *hp, ulong_t nelems)
usr/src/common/ctf/ctf_hash.c
46
bzero(hp, sizeof (ctf_hash_t));
usr/src/common/ctf/ctf_hash.c
71
ctf_hash_size(const ctf_hash_t *hp)
usr/src/common/ctf/ctf_hash.c
96
ctf_hash_insert(ctf_hash_t *hp, ctf_file_t *fp, ushort_t type, uint_t name)
usr/src/common/ctf/ctf_impl.h
106
ctf_hash_t *ctl_hash; /* pointer to hash table for lookup */
usr/src/common/ctf/ctf_impl.h
207
ctf_hash_t ctf_structs; /* hash table of struct types */
usr/src/common/ctf/ctf_impl.h
208
ctf_hash_t ctf_unions; /* hash table of union types */
usr/src/common/ctf/ctf_impl.h
209
ctf_hash_t ctf_enums; /* hash table of enum types */
usr/src/common/ctf/ctf_impl.h
210
ctf_hash_t ctf_names; /* hash table of remaining type names */
usr/src/common/ctf/ctf_impl.h
269
extern int ctf_hash_create(ctf_hash_t *, ulong_t);
usr/src/common/ctf/ctf_impl.h
270
extern int ctf_hash_insert(ctf_hash_t *, ctf_file_t *, ushort_t, uint_t);
usr/src/common/ctf/ctf_impl.h
271
extern int ctf_hash_define(ctf_hash_t *, ctf_file_t *, ushort_t, uint_t);
usr/src/common/ctf/ctf_impl.h
272
extern ctf_helem_t *ctf_hash_lookup(ctf_hash_t *, ctf_file_t *,
usr/src/common/ctf/ctf_impl.h
274
extern uint_t ctf_hash_size(const ctf_hash_t *);
usr/src/common/ctf/ctf_impl.h
275
extern void ctf_hash_destroy(ctf_hash_t *);
usr/src/common/ctf/ctf_impl.h
276
extern void ctf_hash_dump(const char *, ctf_hash_t *, ctf_file_t *);
usr/src/common/ctf/ctf_open.c
210
ctf_hash_t *hp;