Home | History | Annotate | Download | only in src

Lines Matching defs:ebl

42 static Elf *open_file (const char *fname, int *fdp, Ebl **eblp);
43 static bool search_for_copy_reloc (Ebl *ebl, size_t scnndx, int symndx);
163 Ebl *ebl1;
168 Ebl *ebl2;
728 open_file (const char *fname, int *fdp, Ebl **eblp)
738 Ebl *ebl = ebl_openbackend (elf);
739 if (ebl == NULL)
741 gettext ("cannot create EBL descriptor for '%s'"), fname);
744 *eblp = ebl;
750 search_for_copy_reloc (Ebl *ebl, size_t scnndx, int symndx)
753 while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
783 && ebl_copy_reloc_p (ebl, GELF_R_TYPE (rel->r_info)))
797 && ebl_copy_reloc_p (ebl, GELF_R_TYPE (rela->r_info)))