/external/elfutils/backends/ |
sh_symbol.c | 47 sh_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type)
|
x86_64_symbol.c | 40 x86_64_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type)
|
x86_64_syscall.c | 34 x86_64_syscall_abi (Ebl *ebl __attribute__ ((unused)),
|
alpha_init.c | 43 Ebl *eh; 47 if (ehlen < sizeof (Ebl))
|
i386_init.c | 42 Ebl *eh; 46 if (ehlen < sizeof (Ebl))
|
ia64_init.c | 42 Ebl *eh; 46 if (ehlen < sizeof (Ebl))
|
ppc64_init.c | 43 Ebl *eh; 47 if (ehlen < sizeof (Ebl))
|
ppc_init.c | 43 Ebl *eh; 47 if (ehlen < sizeof (Ebl))
|
sparc_init.c | 43 Ebl *eh; 47 if (ehlen < sizeof (Ebl))
|
libebl_CPU.h | 37 Ebl *eh, size_t ehlen); 39 #include "ebl-hooks.h"
|
i386_symbol.c | 49 i386_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type)
|
ppc_attrs.c | 37 ppc_check_object_attribute (ebl, vendor, tag, value, tag_name, value_name) 38 Ebl *ebl __attribute__ ((unused));
|
/external/elfutils/libebl/ |
ebl_check_special_section.c | 58 ebl_check_special_section (ebl, ndx, shdr, sname) 59 Ebl *ebl; 64 return ebl != NULL && ebl->check_special_section (ebl, ndx, shdr, sname);
|
ebl_check_special_symbol.c | 59 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);
|
ebl_syscall_abi.c | 58 ebl_syscall_abi (ebl, sp, pc, callno, args) 59 Ebl *ebl; 65 return ebl != NULL ? ebl->syscall_abi (ebl, sp, pc, callno, args) : -1;
|
eblbsspltp.c | 59 ebl_bss_plt_p (ebl, ehdr) 60 Ebl *ebl; 63 return ebl == NULL ? false : ebl->bss_plt_p (ebl->elf, ehdr);
|
eblclosebackend.c | 61 ebl_closebackend (Ebl *ebl) 63 if (ebl != NULL) 66 ebl->destr (ebl); 69 if (ebl->dlhandle != NULL) 70 (void) dlclose (ebl->dlhandle); 73 free (ebl);
|
eblreloctypename.c | 60 ebl_reloc_type_name (ebl, reloc, buf, len) 61 Ebl *ebl; 68 res = ebl != NULL ? ebl->reloc_type_name (reloc, buf, len) : NULL;
|
eblretval.c | 59 ebl_return_value_location (ebl, functypedie, locops) 60 Ebl *ebl; 64 return ebl == NULL ? -1 : ebl->return_value_location (functypedie, locops);
|
ebl-hooks.h | 60 Elf_Type EBLHOOK(reloc_simple_type) (Ebl *, int); 89 bool EBLHOOK(check_special_section) (Ebl *, int, 125 bool EBLHOOK(check_object_attribute) (Ebl *, const char *, int, uint64_t, 156 ssize_t EBLHOOK(register_info) (Ebl *ebl, 162 int EBLHOOK(syscall_abi) (Ebl *ebl, int *sp, int *pc, 172 void EBLHOOK(destr) (struct ebl *);
|
eblcheckobjattr.c | 59 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,
|
eblreginfo.c | 59 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,
|
libeblP.h | 59 struct ebl struct 75 /* See ebl-hooks.h for the declarations of the hook functions. */ 77 # include "ebl-hooks.h" 89 typedef const char *(*ebl_bhinit_t) (Elf *, GElf_Half, Ebl *, size_t);
|
ebldynamictagcheck.c | 60 ebl_dynamic_tag_check (ebl, tag) 61 Ebl *ebl; 64 bool res = ebl != NULL ? ebl->dynamic_tag_check (tag) : false;
|
/external/elfutils/libasm/ |
disasm_begin.c | 38 disasm_begin (Ebl *ebl, Elf *elf, DisasmGetSymCB_t symcb) 40 if (ebl == NULL) 43 if (ebl->disasm == NULL) 56 ctx->ebl = ebl;
|