reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
257 for (const Elf_Sym *p = (const Elf_Sym *)symtab; (Elf_Addr)p < strtab; 258 ++p) { 262 if (p->st_name >= strsz) break; 263 char *name = (char*)(strtab + p->st_name); 265 assert(p->st_info == ELF32_ST_INFO(STB_GLOBAL, STT_FUNC) || 266 p->st_info == ELF32_ST_INFO(STB_WEAK, STT_FUNC)); 267 uptr addr = info->dlpi_addr + p->st_value;