Home | History | Annotate | Download | only in src

Lines Matching refs:subelf

2102   Elf *subelf;
2105 while ((subelf = elf_begin (fd, cmd, elf)) != NULL)
2108 Elf_Arhdr *arhdr = elf_getarhdr (subelf);
2110 if (elf_kind (subelf) == ELF_K_ELF)
2111 result |= handle_elf (fd, subelf, new_prefix, arhdr->ar_name, 0, NULL);
2112 else if (elf_kind (subelf) == ELF_K_AR)
2113 result |= handle_ar (fd, subelf, new_prefix, arhdr->ar_name, NULL);
2116 cmd = elf_next (subelf);
2117 if (unlikely (elf_end (subelf) != 0))