Home | History | Annotate | Download | only in libelf

Lines Matching refs:Elf

49   /* Next try ELF files.  */
52 /* Could be an ELF file. */
68 /* Allocate an Elf descriptor and fill in the generic information. */
69 static inline Elf *
72 Elf_Cmd cmd, Elf *parent, Elf_Kind kind, size_t extra)
74 Elf *result = (Elf *) calloc (1, sizeof (Elf) + extra);
98 libelf_acquire_all (Elf *elf)
100 rwlock_wrlock (elf->lock);
102 if (elf->kind == ELF_K_AR)
104 Elf *child = elf->state.ar.children;
118 libelf_release_all (Elf *elf)
120 if (elf->kind == ELF_K_AR)
122 Elf *child = elf->state.ar.children;
132 rwlock_unlock (elf->lock);