• Home
  • Raw
  • Download

Lines Matching refs:shstrndx

363 		 size_t shstrndx)  in show_relocs_rel()  argument
426 elf_strptr (ebl->elf, shstrndx, destshdr->sh_name)); in show_relocs_rel()
436 size_t shstrndx) in show_relocs_rela() argument
499 elf_strptr (ebl->elf, shstrndx, destshdr->sh_name)); in show_relocs_rela()
511 section_match (Elf *elf, uint32_t scnndx, GElf_Shdr *shdr, size_t shstrndx) in section_match() argument
523 elf_strptr (elf, shstrndx, shdr->sh_name)) == 0) in section_match()
541 show_relocs (Ebl *ebl, const char *fname, uint32_t shstrndx) in show_relocs() argument
556 if (! section_match (ebl->elf, elf_ndxscn (scn), shdr, shstrndx)) in show_relocs()
566 elf_strptr (ebl->elf, shstrndx, destshdr->sh_name), in show_relocs()
600 symshdr->sh_link, shstrndx); in show_relocs()
603 symshdr->sh_link, shstrndx); in show_relocs()
614 show_full_content (Ebl *ebl, const char *fname, uint32_t shstrndx) in show_full_content() argument
627 if (! section_match (ebl->elf, elf_ndxscn (scn), shdr, shstrndx)) in show_full_content()
631 elf_strptr (ebl->elf, shstrndx, shdr->sh_name)); in show_full_content()
726 show_disasm (Ebl *ebl, const char *fname, uint32_t shstrndx) in show_disasm() argument
744 if (! section_match (ebl->elf, elf_ndxscn (scn), shdr, shstrndx)) in show_disasm()
752 elf_strptr (ebl->elf, shstrndx, shdr->sh_name)); in show_disasm()
795 size_t shstrndx; in handle_elf() local
796 if (elf_getshstrndx (ebl->elf, &shstrndx) < 0) in handle_elf()
802 result = show_disasm (ebl, fullname, shstrndx); in handle_elf()
804 result = show_relocs (ebl, fullname, shstrndx); in handle_elf()
806 result = show_full_content (ebl, fullname, shstrndx); in handle_elf()