/external/elfutils/libebl/ |
eblobjnotetypename.c | 41 ebl_object_note_type_name (Ebl *ebl, const char *name, uint32_t type, 44 const char *res = ebl->object_note_type_name (name, type, buf, len);
|
eblosabiname.c | 39 ebl_osabi_name (Ebl *ebl, int osabi, char *buf, size_t len) 41 const char *res = ebl != NULL ? ebl->osabi_name (osabi, buf, len) : NULL;
|
eblsectionstripp.c | 38 ebl_section_strip_p (Ebl *ebl, const GElf_Ehdr *ehdr, const GElf_Shdr *shdr, 46 if (ebl_debugscn_p (ebl, name)) 51 Elf_Scn *scn_l = elf_getscn (ebl->elf, (shdr)->sh_info); 56 const char *s_l = elf_strptr (ebl->elf, ehdr->e_shstrndx, 58 if (s_l != NULL && ebl_debugscn_p (ebl, s_l))
|
eblsymbolbindingname.c | 39 ebl_symbol_binding_name (Ebl *ebl, int binding, char *buf, size_t len) 43 res = ebl != NULL ? ebl->symbol_type_name (binding, buf, len) : NULL; 61 && (ident = elf_getident (ebl->elf, NULL)) != NULL
|
eblsymboltypename.c | 39 ebl_symbol_type_name (Ebl *ebl, int symbol, char *buf, size_t len) 43 res = ebl != NULL ? ebl->symbol_type_name (symbol, buf, len) : NULL; 67 && (ident = elf_getident (ebl->elf, NULL)) != NULL
|
eblsectionname.c | 39 ebl_section_name (Ebl *ebl, int section, int xsection, char *buf, size_t len, 42 const char *res = ebl != NULL ? ebl->section_name (section, xsection,
|
eblsegmenttypename.c | 39 ebl_segment_type_name (Ebl *ebl, int segment, char *buf, size_t len) 43 res = ebl != NULL ? ebl->segment_type_name (segment, buf, len) : NULL;
|
/external/elfutils/backends/ |
alpha_symbol.c | 64 alpha_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type) 86 alpha_check_special_section (Ebl *ebl, 101 while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
|
ppc64_init.c | 47 Ebl *eh, 51 if (ehlen < sizeof (Ebl))
|
sparc_symbol.c | 42 sparc_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type) 74 sparc_check_special_section (Ebl *ebl, 88 while ((scn = elf_nextscn (ebl->elf, scn)) != NULL)
|
aarch64_regs.c | 61 aarch64_register_info (Ebl *ebl __attribute__ ((unused)),
|
aarch64_symbol.c | 43 aarch64_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type)
|
alpha_regs.c | 40 alpha_register_info (Ebl *ebl __attribute__ ((unused)),
|
arm_attrs.c | 47 arm_check_object_attribute (Ebl *ebl __attribute__ ((unused)),
|
arm_regs.c | 40 arm_register_info (Ebl *ebl __attribute__ ((unused)),
|
i386_regs.c | 40 i386_register_info (Ebl *ebl __attribute__ ((unused)),
|
ppc64_symbol.c | 45 ppc64_reloc_simple_type (Ebl *ebl __attribute__ ((unused)), int type)
|
ppc_initreg.c | 44 ppc_dwarf_to_regno (Ebl *ebl __attribute__ ((unused)), unsigned *regno)
|
s390_initreg.c | 89 s390_normalize_pc (Ebl *ebl __attribute__ ((unused)), Dwarf_Addr *pc) 91 assert (ebl->class == ELFCLASS32);
|
s390_regs.c | 57 s390_register_info (Ebl *ebl __attribute__ ((unused)), 70 *bits = ebl->class == ELFCLASS64 ? 64 : 32;
|
sparc_regs.c | 40 sparc_register_info (Ebl *ebl, 45 const int nfp = 32 + (ebl->class == ELFCLASS32 ? 0 : 16); 46 const int nspec = ebl->class == ELFCLASS32 ? 8 : 6; 54 *bits = ebl->class == ELFCLASS32 ? 32 : 64; 69 if ((ebl->class == ELFCLASS64 ? 0 : 4) + 1 - (unsigned int) regno <= 1) 71 return stpncpy (name, names[ebl->class == ELFCLASS64][regno],
|
tilegx_regs.c | 41 tilegx_register_info (Ebl *ebl __attribute__ ((unused)),
|
/external/elfutils/libasm/ |
libasm.h | 75 extern AsmCtx_t *asm_begin (const char *fname, Ebl *ebl, bool textp); 181 extern DisasmCtx_t *disasm_begin (Ebl *ebl, Elf *elf, DisasmGetSymCB_t symcb);
|
/external/elfutils/tests/ |
asm-tst4.c | 44 Ebl *ebl = ebl_openbackend_machine (EM_386); local 45 if (ebl == NULL) 51 ctx = asm_begin (fname, ebl, false); 101 ebl_closebackend (ebl);
|
asm-tst5.c | 46 Ebl *ebl = ebl_openbackend_machine (EM_386); local 47 if (ebl == NULL) 53 ctx = asm_begin (fname, ebl, false); 113 ebl_closebackend (ebl);
|