Lines Matching full:archive
31 .Nd provide sequential access to the next archive member
37 .Fn elf_rand "Elf *archive" "off_t offset"
42 .Ar archive
45 will provide access to the archive member at byte offset
47 in the archive.
50 is the byte offset from the start of the archive to the beginning of
51 the archive header for the desired member.
53 Archive member offsets may be retrieved using the
63 To process all the members of an archive use:
66 Elf *archive, *e;
69 archive = elf_begin(fd, cmd, NULL);
70 while ((e = elf_begin(fd, cmd, archive)) != (Elf *) 0)
76 if (elf_rand(archive, off) != off) {
80 elf_end(archive);
83 To rewind an archive, use:
85 Elf *archive;
87 if (elf_rand(archive, SARMAG) != SARMAG) {
98 .Ar archive
102 .Ar archive
105 archive.
109 did not correspond to the start of an archive member header.