Home | History | Annotate | Download | only in src

Lines Matching defs:shstrndx

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