Lines Matching refs:subelf
418 Elf *subelf; in handle_ar() local
449 || (subelf = elf_begin (fd, cmd, elf)) == NULL in handle_ar()
450 || (arhdr = elf_getarhdr (subelf)) == NULL)) in handle_ar()
472 while ((subelf = elf_begin (fd, cmd, elf)) != NULL) in handle_ar()
475 Elf_Arhdr *arhdr = elf_getarhdr (subelf); in handle_ar()
482 if (elf_kind (subelf) == ELF_K_ELF) in handle_ar()
483 result |= handle_elf (fd, subelf, new_prefix, arhdr->ar_name, in handle_ar()
485 else if (elf_kind (subelf) == ELF_K_AR) in handle_ar()
486 result |= handle_ar (fd, subelf, new_prefix, arhdr->ar_name, in handle_ar()
497 cmd = elf_next (subelf); in handle_ar()
498 if (elf_end (subelf) != 0) in handle_ar()