Lines Matching defs:symp
1212 const Elf32_Sym *symp = (Elf32_Sym *)symbase + i;
1213 int type = ELF32_ST_TYPE(symp->st_info);
1216 if (ctf_sym_valid(strbase, type, symp->st_shndx,
1217 symp->st_value, symp->st_name) == B_FALSE)
1219 name = (char *)(strbase + symp->st_name);
1221 const Elf64_Sym *symp = (Elf64_Sym *)symbase + i;
1222 int type = ELF64_ST_TYPE(symp->st_info);
1225 if (ctf_sym_valid(strbase, type, symp->st_shndx,
1226 symp->st_value, symp->st_name) == B_FALSE)
1228 name = (char *)(strbase + symp->st_name);
1272 const Elf32_Sym *symp = (Elf32_Sym *)symbase + i;
1273 int type = ELF32_ST_TYPE(symp->st_info);
1274 if (ELF32_ST_TYPE(symp->st_info) != STT_FUNC)
1276 if (ctf_sym_valid(strbase, type, symp->st_shndx,
1277 symp->st_value, symp->st_name) == B_FALSE)
1279 name = (char *)(strbase + symp->st_name);
1281 const Elf64_Sym *symp = (Elf64_Sym *)symbase + i;
1282 int type = ELF64_ST_TYPE(symp->st_info);
1283 if (ELF64_ST_TYPE(symp->st_info) != STT_FUNC)
1285 if (ctf_sym_valid(strbase, type, symp->st_shndx,
1286 symp->st_value, symp->st_name) == B_FALSE)
1288 name = (char *)(strbase + symp->st_name);