/external/elfutils/libebl/ |
eblelfclass.c | 59 ebl_get_elfclass (ebl) 60 Ebl *ebl; 62 return ebl->class;
|
libebl.h | 63 typedef struct ebl Ebl; 71 extern Ebl *ebl_openbackend (Elf *elf); 73 extern Ebl *ebl_openbackend_machine (GElf_Half machine); 75 extern Ebl *ebl_openbackend_emulation (const char *emulation); 78 extern void ebl_closebackend (Ebl *bh); 84 extern int ebl_get_elfmachine (Ebl *ebl) __attribute__ ((__pure__)); 87 extern int ebl_get_elfclass (Ebl *ebl) __attribute__ ((__pure__)) [all...] |
eblcopyrelocp.c | 59 ebl_copy_reloc_p (ebl, reloc) 60 Ebl *ebl; 63 return ebl->copy_reloc_p (reloc);
|
eblelfdata.c | 59 ebl_get_elfdata (ebl) 60 Ebl *ebl; 62 return ebl->data;
|
eblelfmachine.c | 59 ebl_get_elfmachine (ebl) 60 Ebl *ebl; 62 return ebl->machine;
|
eblnonerelocp.c | 59 ebl_none_reloc_p (ebl, reloc) 60 Ebl *ebl; 63 return ebl->none_reloc_p (reloc);
|
eblrelativerelocp.c | 59 ebl_relative_reloc_p (ebl, reloc) 60 Ebl *ebl; 63 return ebl->relative_reloc_p (reloc);
|
eblsysvhashentrysize.c | 59 ebl_sysvhash_entrysize (ebl) 60 Ebl *ebl; 62 return ebl->sysvhash_entrysize;
|
eblbackendname.c | 60 ebl_backend_name (ebl) 61 Ebl *ebl; 63 return ebl != NULL ? ebl->emulation : gettext ("No backend");
|
ebldebugscnp.c | 60 ebl_debugscn_p (ebl, name) 61 Ebl *ebl; 64 return ebl->debugscn_p (name);
|
eblgotpcreloccheck.c | 60 ebl_gotpc_reloc_check (ebl, reloc) 61 Ebl *ebl; 64 return ebl != NULL ? ebl->gotpc_reloc_check (ebl->elf, reloc) : false;
|
eblmachineflagcheck.c | 59 ebl_machine_flag_check (ebl, flags) 60 Ebl *ebl; 63 return ebl != NULL ? ebl->machine_flag_check (flags) : (flags == 0);
|
eblmachinesectionflagcheck.c | 58 ebl_machine_section_flag_check (ebl, flags) 59 Ebl *ebl; 62 return ebl != NULL ? ebl->machine_section_flag_check (flags) : (flags == 0);
|
eblrelocsimpletype.c | 58 ebl_reloc_simple_type (ebl, reloc) 59 Ebl *ebl; 62 return ebl != NULL ? ebl->reloc_simple_type (ebl, reloc) : ELF_T_NUM;
|
eblreloctypecheck.c | 59 ebl_reloc_type_check (ebl, reloc) 60 Ebl *ebl; 63 return ebl != NULL ? ebl->reloc_type_check (reloc) : false;
|
eblrelocvaliduse.c | 59 ebl_reloc_valid_use (ebl, reloc) 60 Ebl *ebl; 63 return ebl != NULL ? ebl->reloc_valid_use (ebl->elf, reloc) : false;
|
eblshflagscombine.c | 59 ebl_sh_flags_combine (ebl, flags1, flags2) 60 Ebl *ebl; 64 return ebl->sh_flags_combine (flags1, flags2);
|
/external/elfutils/backends/ |
arm_init.c | 43 Ebl *eh; 47 if (ehlen < sizeof (Ebl))
|
sh_init.c | 43 Ebl *eh; 47 if (ehlen < sizeof (Ebl))
|
s390_init.c | 42 Ebl *eh; 46 if (ehlen < sizeof (Ebl))
|
x86_64_init.c | 42 Ebl *eh; 46 if (ehlen < sizeof (Ebl))
|
arm_symbol.c | 39 arm_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type)
|
i386_syscall.c | 34 i386_syscall_abi (Ebl *ebl __attribute__ ((unused)),
|
ppc_syscall.c | 34 ppc_syscall_abi (Ebl *ebl __attribute__ ((unused)),
|
s390_symbol.c | 38 s390_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type)
|