Lines Matching defs:sym
525 GElf_Sym *sym;
531 sym = gelf_getsym (symdata, i, &sym_mem);
532 if (sym == NULL)
535 if (sym->st_value < addr && sym->st_value > lowaddr)
537 lowaddr = sym->st_value;
540 if (sym->st_value > addr && sym->st_value < highaddr)
542 highaddr = sym->st_value;
549 sym = gelf_getsym (symdata, lowidx, &sym_mem);
550 assert (sym != NULL);
553 sym->st_name);
555 if (sym->st_value + sym->st_size > addr)
572 sym = gelf_getsym (symdata, highidx, &sym_mem);
573 assert (sym != NULL);
578 sym->st_name));
584 sym = gelf_getsym (symdata, highidx, &sym_mem);
585 assert (sym != NULL);
589 elf_strptr (elf, shdr->sh_link, sym->st_name));