Home | History | Annotate | Download | only in libelf

Lines Matching refs:elf

42 elf_getscn (Elf *elf, size_t idx)
44 if (elf == NULL)
47 if (unlikely (elf->kind != ELF_K_ELF))
53 rwlock_rdlock (elf->lock);
58 Elf_ScnList *runp = (elf->class == ELFCLASS32
59 || (offsetof (struct Elf, state.elf32.scns)
60 == offsetof (struct Elf, state.elf64.scns))
61 ? &elf->state.elf32.scns : &elf->state.elf64.scns);
83 rwlock_unlock (elf->lock);