/toolchain/binutils/binutils-2.27/ld/emulparams/ |
shlelf_linux.sh | 4 SCRIPT_NAME=elf
|
/toolchain/binutils/binutils-2.27/ld/testsuite/ld-cris/ |
undef2.d | 3 # target: cris-*-*elf* cris-*-*aout*
|
undef3.d | 3 #target: cris-*-*elf* cris-*-*aout*
|
/toolchain/binutils/binutils-2.27/ld/testsuite/ld-elf/ |
linkonce2.d | 6 # generic elf targets don't emit relocs
|
merge2.d | 7 .*: file format .*elf.*
|
merge3.d | 7 .*: file format .*elf.*
|
/toolchain/binutils/binutils-2.27/ld/testsuite/ld-elfcomm/ |
common-1c.d | 2 #as: --elf-stt-common=yes
|
common-1d.d | 2 #as: --elf-stt-common=yes
|
common-1e.d | 2 #as: --elf-stt-common=no
|
common-1f.d | 2 #as: --elf-stt-common=no
|
common-2c.d | 2 #as: --elf-stt-common=yes
|
common-2d.d | 2 #as: --elf-stt-common=yes
|
common-2e.d | 2 #as: --elf-stt-common=no
|
common-2f.d | 2 #as: --elf-stt-common=no
|
/toolchain/binutils/binutils-2.27/ld/testsuite/ld-sh/ |
reloc1.d | 5 #target: sh*-*-elf sh-*-vxworks
|
/toolchain/binutils/binutils-2.27/ld/testsuite/ld-sh/sh64/ |
stobin-0-dso.d | 5 #target: sh64-*-elf
|
/toolchain/binutils/binutils-2.27/ld/testsuite/ld-x86-64/ |
largecomm-1c.d | 2 #as: --elf-stt-common=yes
|
largecomm-1d.d | 2 #as: --elf-stt-common=yes
|
largecomm-1e.d | 2 #as: --elf-stt-common=no
|
largecomm-1f.d | 2 #as: --elf-stt-common=no
|
/external/elfutils/libdw/ |
dwarf_getcfi_elf.c | 1 /* Get CFI from ELF file's exception-handling info. 44 allocate_cfi (Elf *elf, GElf_Addr vaddr) 53 cfi->e_ident = (unsigned char *) elf_getident (elf, NULL); 126 getcfi_gnu_eh_frame (Elf *elf, const GElf_Ehdr *ehdr, const GElf_Phdr *phdr) 128 Elf_Data *data = elf_getdata_rawchunk (elf, phdr->p_offset, phdr->p_filesz, 166 if (elf_rawfile (elf, &filesize) != NULL) 169 data = elf_getdata_rawchunk (elf, eh_frame_offset, eh_frame_size, ELF_T_BYTE); 175 Dwarf_CFI *cfi = allocate_cfi (elf, eh_frame_ptr) [all...] |
/external/elfutils/libelf/ |
elf_strptr.c | 56 elf_strptr (Elf *elf, size_t idx, size_t offset) 58 if (elf == NULL) 61 if (elf->kind != ELF_K_ELF) 67 rwlock_rdlock (elf->lock); 73 Elf_ScnList *runp = (elf->class == ELFCLASS32 74 || (offsetof (struct Elf, state.elf32.scns) 75 == offsetof (struct Elf, state.elf64.scns)) 76 ? &elf->state.elf32.scns : &elf->state.elf64.scns) [all...] |
/external/elfutils/tests/ |
update2.c | 37 Elf *elf; local 51 elf = elf_begin (fd, ELF_C_WRITE, NULL); 52 if (elf == NULL) 54 printf ("cannot create ELF descriptor: %s\n", elf_errmsg (-1)); 58 /* Create an ELF header. */ 59 ehdr = elf32_newehdr (elf); 62 printf ("cannot create ELF header: %s\n", elf_errmsg (-1)); 66 /* Print the ELF header values. */ 88 elf_flagehdr (elf, ELF_C_SET, ELF_F_DIRTY) [all...] |
/external/elfutils/libdwfl/ |
dwfl_report_elf.c | 1 /* Report a module to libdwfl based on ELF program headers. 43 __libdwfl_elf_address_range (Elf *elf, GElf_Addr base, bool add_p_vaddr, 49 GElf_Ehdr ehdr_mem, *ehdr = gelf_getehdr (elf, &ehdr_mem); 71 while ((scn = elf_nextscn (elf, scn)) != NULL) 105 prev_scn = elf_nextscn (elf, prev_scn); 177 if (unlikely (elf_getphdrnum (elf, &phnum) != 0)) 181 GElf_Phdr phdr_mem, *ph = gelf_getphdr (elf, i, &phdr_mem); 204 GElf_Phdr phdr_mem, *ph = gelf_getphdr (elf, i, &phdr_mem); 240 int fd, Elf *elf, GElf_Addr base, bool add_p_vaddr 302 Elf *elf; local [all...] |
dwfl_module_getdwarf.c | 38 open_elf_file (Elf **elf, int *fd, char **name) 40 if (*elf == NULL) 54 return __libdw_open_file (fd, elf, true, false); 56 else if (unlikely (elf_kind (*elf) != ELF_K_ELF)) 58 elf_end (*elf); 59 *elf = NULL; 65 /* Elf file already open and looks fine. */ 69 /* Open libelf FILE->fd and compute the load base of ELF as loaded in MOD. 70 When we return success, FILE->elf and FILE->vaddr are set up. * 935 Elf *elf = mod->main.elf; local [all...] |