Home | History | Annotate | Download | only in src

Lines Matching refs:subelf

443   Elf *subelf;
474 || (subelf = elf_begin (fd, cmd, elf)) == NULL
475 || (arhdr = elf_getarhdr (subelf)) == NULL))
497 while ((subelf = elf_begin (fd, cmd, elf)) != NULL)
500 Elf_Arhdr *arhdr = elf_getarhdr (subelf);
506 if (elf_kind (subelf) == ELF_K_ELF)
507 result |= handle_elf (subelf, new_prefix, arhdr->ar_name,
509 else if (elf_kind (subelf) == ELF_K_AR)
510 result |= handle_ar (fd, subelf, new_prefix, arhdr->ar_name,
521 cmd = elf_next (subelf);
522 if (elf_end (subelf) != 0)