Lines Matching refs:st_info
81 uchar_t type = ELF32_ST_TYPE(sym->st_info); in dt_module_syminit32()
90 (ELF32_ST_BIND(sym->st_info) != STB_LOCAL || sym->st_size)) in dt_module_syminit32()
114 uchar_t type = ELF64_ST_TYPE(sym->st_info); in dt_module_syminit64()
123 (ELF64_ST_BIND(sym->st_info) != STB_LOCAL || sym->st_size)) in dt_module_syminit64()
149 if ((ELF32_ST_TYPE(lhs->st_info) == STT_NOTYPE) != in dt_module_symcomp32()
150 (ELF32_ST_TYPE(rhs->st_info) == STT_NOTYPE)) in dt_module_symcomp32()
151 return (ELF32_ST_TYPE(lhs->st_info) == STT_NOTYPE ? 1 : -1); in dt_module_symcomp32()
153 if ((ELF32_ST_BIND(lhs->st_info) == STB_WEAK) != in dt_module_symcomp32()
154 (ELF32_ST_BIND(rhs->st_info) == STB_WEAK)) in dt_module_symcomp32()
155 return (ELF32_ST_BIND(lhs->st_info) == STB_WEAK ? 1 : -1); in dt_module_symcomp32()
178 if ((ELF64_ST_TYPE(lhs->st_info) == STT_NOTYPE) != in dt_module_symcomp64()
179 (ELF64_ST_TYPE(rhs->st_info) == STT_NOTYPE)) in dt_module_symcomp64()
180 return (ELF64_ST_TYPE(lhs->st_info) == STT_NOTYPE ? 1 : -1); in dt_module_symcomp64()
182 if ((ELF64_ST_BIND(lhs->st_info) == STB_WEAK) != in dt_module_symcomp64()
183 (ELF64_ST_BIND(rhs->st_info) == STB_WEAK)) in dt_module_symcomp64()
184 return (ELF64_ST_BIND(lhs->st_info) == STB_WEAK ? 1 : -1); in dt_module_symcomp64()
201 (ELF32_ST_BIND(sym->st_info) != STB_LOCAL || sym->st_size)) in dt_module_symsort32()
225 (ELF64_ST_BIND(sym->st_info) != STB_LOCAL || sym->st_size)) in dt_module_symsort64()
243 dst->st_info = src->st_info; in dt_module_symgelf32()
1302 symp->st_info = in dtrace_lookup_by_name()
1594 } else if (GELF_ST_TYPE(symp->st_info) != STT_FUNC) { in dtrace_symbol_type()