Home | History | Annotate | Download | only in src

Lines Matching refs:subelf

417   Elf *subelf;
448 || (subelf = elf_begin (fd, cmd, elf)) == NULL
449 || (arhdr = elf_getarhdr (subelf)) == NULL))
471 while ((subelf = elf_begin (fd, cmd, elf)) != NULL)
474 Elf_Arhdr *arhdr = elf_getarhdr (subelf);
480 if (elf_kind (subelf) == ELF_K_ELF)
481 result |= handle_elf (subelf, new_prefix, arhdr->ar_name,
483 else if (elf_kind (subelf) == ELF_K_AR)
484 result |= handle_ar (fd, subelf, new_prefix, arhdr->ar_name,
495 cmd = elf_next (subelf);
496 if (elf_end (subelf) != 0)