Searched refs:ebl (Results 1 - 25 of 101) sorted by relevance

12345

/external/elfutils/libebl/
H A Deblgotpcreloccheck.c60 ebl_gotpc_reloc_check (ebl, reloc)
61 Ebl *ebl;
64 return ebl != NULL ? ebl->gotpc_reloc_check (ebl->elf, reloc) : false;
H A Deblrelocsimpletype.c58 ebl_reloc_simple_type (ebl, reloc)
59 Ebl *ebl;
62 return ebl != NULL ? ebl->reloc_simple_type (ebl, reloc) : ELF_T_NUM;
H A Deblrelocvaliduse.c59 ebl_reloc_valid_use (ebl, reloc)
60 Ebl *ebl;
63 return ebl != NULL ? ebl->reloc_valid_use (ebl->elf, reloc) : false;
H A Deblclosebackend.c61 ebl_closebackend (Ebl *ebl) argument
63 if (ebl != NULL)
66 ebl->destr (ebl);
69 if (ebl->dlhandle != NULL)
70 (void) dlclose (ebl->dlhandle);
73 free (ebl);
H A Deblcopyrelocp.c59 ebl_copy_reloc_p (ebl, reloc)
60 Ebl *ebl;
63 return ebl->copy_reloc_p (reloc);
H A Deblelfclass.c59 ebl_get_elfclass (ebl)
60 Ebl *ebl;
62 return ebl->class;
H A Deblelfdata.c59 ebl_get_elfdata (ebl)
60 Ebl *ebl;
62 return ebl->data;
H A Deblelfmachine.c59 ebl_get_elfmachine (ebl)
60 Ebl *ebl;
62 return ebl->machine;
H A Deblnonerelocp.c59 ebl_none_reloc_p (ebl, reloc)
60 Ebl *ebl;
63 return ebl->none_reloc_p (reloc);
H A Deblrelativerelocp.c59 ebl_relative_reloc_p (ebl, reloc)
60 Ebl *ebl;
63 return ebl->relative_reloc_p (reloc);
H A Deblsysvhashentrysize.c59 ebl_sysvhash_entrysize (ebl)
60 Ebl *ebl;
62 return ebl->sysvhash_entrysize;
H A Deblbackendname.c60 ebl_backend_name (ebl)
61 Ebl *ebl;
63 return ebl != NULL ? ebl->emulation : gettext ("No backend");
H A Deblmachineflagcheck.c59 ebl_machine_flag_check (ebl, flags)
60 Ebl *ebl;
63 return ebl != NULL ? ebl->machine_flag_check (flags) : (flags == 0);
H A Deblmachinesectionflagcheck.c58 ebl_machine_section_flag_check (ebl, flags)
59 Ebl *ebl;
62 return ebl != NULL ? ebl->machine_section_flag_check (flags) : (flags == 0);
H A Deblreloctypecheck.c59 ebl_reloc_type_check (ebl, reloc)
60 Ebl *ebl;
63 return ebl != NULL ? ebl->reloc_type_check (reloc) : false;
H A Debl_check_special_section.c58 ebl_check_special_section (ebl, ndx, shdr, sname)
59 Ebl *ebl;
64 return ebl != NULL && ebl->check_special_section (ebl, ndx, shdr, sname);
H A Debl_check_special_symbol.c59 ebl_check_special_symbol (ebl, ehdr, sym, name, destshdr)
60 Ebl *ebl;
66 if (ebl == NULL)
69 return ebl->check_special_symbol (ebl->elf, ehdr, sym, name, destshdr);
H A Debl_syscall_abi.c58 ebl_syscall_abi (ebl, sp, pc, callno, args)
59 Ebl *ebl;
65 return ebl != NULL ? ebl->syscall_abi (ebl, sp, pc, callno, args) : -1;
H A Deblbsspltp.c59 ebl_bss_plt_p (ebl, ehdr)
60 Ebl *ebl;
63 return ebl == NULL ? false : ebl->bss_plt_p (ebl->elf, ehdr);
H A Debldebugscnp.c60 ebl_debugscn_p (ebl, name)
61 Ebl *ebl;
64 return ebl->debugscn_p (name);
H A Deblshflagscombine.c59 ebl_sh_flags_combine (ebl, flags1, flags2)
60 Ebl *ebl;
64 return ebl->sh_flags_combine (flags1, flags2);
H A Deblreloctypename.c60 ebl_reloc_type_name (ebl, reloc, buf, len)
61 Ebl *ebl;
68 res = ebl != NULL ? ebl->reloc_type_name (reloc, buf, len) : NULL;
H A Deblretval.c59 ebl_return_value_location (ebl, functypedie, locops)
60 Ebl *ebl;
64 return ebl == NULL ? -1 : ebl->return_value_location (functypedie, locops);
H A Deblreginfo.c59 ebl_register_info (ebl, regno, name, namelen, prefix, setname, bits, type)
60 Ebl *ebl;
69 return ebl == NULL ? -1 : ebl->register_info (ebl, regno, name, namelen,
H A Deblcheckobjattr.c59 ebl_check_object_attribute (ebl, vendor, tag, value, tag_name, value_name)
60 Ebl *ebl;
67 if (ebl->check_object_attribute (ebl, vendor, tag, value,

Completed in 1235 milliseconds

12345