Lines Matching refs:hep
722 ctf_helem_t *hep = NULL; in ctf_add_struct() local
727 hep = ctf_hash_lookup(hp, fp, name, strlen(name)); in ctf_add_struct()
729 if (hep != NULL && ctf_type_kind(fp, hep->h_type) == CTF_K_FORWARD) in ctf_add_struct()
730 dtd = ctf_dtd_lookup(fp, type = hep->h_type); in ctf_add_struct()
744 ctf_helem_t *hep = NULL; in ctf_add_union() local
749 hep = ctf_hash_lookup(hp, fp, name, strlen(name)); in ctf_add_union()
751 if (hep != NULL && ctf_type_kind(fp, hep->h_type) == CTF_K_FORWARD) in ctf_add_union()
752 dtd = ctf_dtd_lookup(fp, type = hep->h_type); in ctf_add_union()
766 ctf_helem_t *hep = NULL; in ctf_add_enum() local
771 hep = ctf_hash_lookup(hp, fp, name, strlen(name)); in ctf_add_enum()
773 if (hep != NULL && ctf_type_kind(fp, hep->h_type) == CTF_K_FORWARD) in ctf_add_enum()
774 dtd = ctf_dtd_lookup(fp, type = hep->h_type); in ctf_add_enum()
788 ctf_helem_t *hep; in ctf_add_forward() local
810 if (name != NULL && (hep = ctf_hash_lookup(hp, in ctf_add_forward()
812 return (hep->h_type); in ctf_add_forward()
1104 ctf_helem_t *hep; in ctf_add_type() local
1138 (hep = ctf_hash_lookup(hp, dst_fp, name, strlen(name))) != NULL) { in ctf_add_type()
1139 dst_type = (ctf_id_t)hep->h_type; in ctf_add_type()