Home | History | Annotate | Download | only in libelf

Lines Matching refs:Elf

1 /* Compute simple checksum from permanent parts of the ELF file.
63 #include "elf-knowledge.h"
80 elfw2(LIBELFBITS,checksum) (elf)
81 Elf *elf;
89 if (elf == NULL)
93 if (INTUSE(elf_getshstrndx) (elf, &shstrndx) < 0)
95 /* This can only happen if the ELF handle is not for real. */
102 ident = elf->state.ELFW(elf,LIBELFBITS).ehdr->e_ident;
112 rwlock_wrlock (elf->lock);
114 rwlock_rdlock (elf->lock);
118 while ((scn = INTUSE(elf_nextscn) (elf, scn)) != NULL)
134 INTUSE(elf_strptr) (elf, shstrndx, shdr->sh_name),
145 we get with 'elf'getdata' might be changed for endianess
192 rwlock_unlock (elf->lock);