Lines Matching refs:hep
844 ctf_helem_t *hep = NULL; in ctf_add_struct() local
849 hep = ctf_hash_lookup(hp, fp, name, strlen(name)); in ctf_add_struct()
851 if (hep != NULL && ctf_type_kind(fp, hep->h_type) == CTF_K_FORWARD) in ctf_add_struct()
852 dtd = ctf_dtd_lookup(fp, type = hep->h_type); in ctf_add_struct()
866 ctf_helem_t *hep = NULL; in ctf_add_union() local
871 hep = ctf_hash_lookup(hp, fp, name, strlen(name)); in ctf_add_union()
873 if (hep != NULL && ctf_type_kind(fp, hep->h_type) == CTF_K_FORWARD) in ctf_add_union()
874 dtd = ctf_dtd_lookup(fp, type = hep->h_type); in ctf_add_union()
888 ctf_helem_t *hep = NULL; in ctf_add_enum() local
893 hep = ctf_hash_lookup(hp, fp, name, strlen(name)); in ctf_add_enum()
895 if (hep != NULL && ctf_type_kind(fp, hep->h_type) == CTF_K_FORWARD) in ctf_add_enum()
896 dtd = ctf_dtd_lookup(fp, type = hep->h_type); in ctf_add_enum()
910 ctf_helem_t *hep; in ctf_add_forward() local
932 if (name != NULL && (hep = ctf_hash_lookup(hp, in ctf_add_forward()
934 return (hep->h_type); in ctf_add_forward()
1269 ctf_helem_t *hep; in ctf_add_type() local
1306 (hep = ctf_hash_lookup(hp, dst_fp, name, strlen(name))) != NULL) { in ctf_add_type()
1307 dst_type = (ctf_id_t)hep->h_type; in ctf_add_type()