Home
last modified time | relevance | path

Searched refs:archive (Results 1 – 25 of 1704) sorted by relevance

12345678910>>...69

/netbsd-src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
H A DMETA.llvm.in4 archive(byte) = "llvm.cma"
5 archive(native) = "llvm.cmxa"
12 archive(byte) = "llvm_analysis.cma"
13 archive(native) = "llvm_analysis.cmxa"
20 archive(byte) = "llvm_bitreader.cma"
21 archive(native) = "llvm_bitreader.cmxa"
28 archive(byte) = "llvm_bitwriter.cma"
29 archive(native) = "llvm_bitwriter.cmxa"
36 archive(byte) = "llvm_executionengine.cma"
37 archive(native) = "llvm_executionengine.cmxa"
[all …]
/netbsd-src/external/bsd/pkg_install/dist/create/
H A Dbuild.c98 write_meta_file(struct memory_file *file, struct archive *archive) in write_meta_file() argument
109 if (archive_write_header(archive, entry)) in write_meta_file()
110 errx(2, "cannot write to archive: %s", archive_error_string(archive)); in write_meta_file()
112 archive_write_data(archive, file->data, file->len); in write_meta_file()
118 write_entry(struct archive *archive, struct archive_entry *entry) in write_entry() argument
131 if (archive_write_header(archive, entry)) { in write_entry()
134 archive_error_string(archive)); in write_entry()
159 archive_write_data(archive, buf, (size_t)buf_len); in write_entry()
169 write_normal_file(const char *name, struct archive *archive, in write_normal_file() argument
218 write_entry(archive, entry); in write_normal_file()
[all …]
/netbsd-src/external/bsd/libarchive/dist/libarchive/
H A Darchive_virtual.c33 archive_filter_code(struct archive *a, int n) in archive_filter_code()
39 archive_filter_count(struct archive *a) in archive_filter_count()
45 archive_filter_name(struct archive *a, int n) in archive_filter_name()
51 archive_filter_bytes(struct archive *a, int n) in archive_filter_bytes()
57 archive_free(struct archive *a) in archive_free()
65 archive_write_close(struct archive *a) in archive_write_close()
71 archive_read_close(struct archive *a) in archive_read_close()
77 archive_write_fail(struct archive *a) in archive_write_fail()
84 archive_write_free(struct archive *a) in archive_write_free()
92 archive_write_finish(struct archive *a) in archive_write_finish()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/docs/CommandGuide/
H A Dllvm-ar.rst9 :program:`llvm-ar` [-]{dmpqrstx}[abcDilLNoOPsSTuUvV] [relpos] [count] archive [files...]
16 files into a single archive library that can be linked into a program. However,
17 the archive can contain any kind of file. By default, :program:`llvm-ar`
19 table needs to be consulted, not each individual file member of the archive.
21 The :program:`llvm-ar` command can be used to *read* archive files in SVR4,
23 archive files. If an SVR4 format archive is used with the :option:`r`
25 (quick update) operations, the archive will be reconstructed in the format
66 :program:`llvm-ar` specify a single basic Operation to perform on the archive,
67 a variety of Modifiers for that Operation, the name of the archive file, and an
73 archive.
[all …]
/netbsd-src/external/bsd/pkg_install/dist/lib/
H A Dpkg_signature.c74 struct archive *archive; member
111 verify_signature_read_cb(struct archive *archive, void *cookie, const void **buf) in verify_signature_read_cb() argument
126 len = archive_read_data(state->archive, state->sign_buf, expected); in verify_signature_read_cb()
159 verify_signature_close_cb(struct archive *archive, void *cookie) in verify_signature_close_cb() argument
163 archive_read_free(state->archive); in verify_signature_close_cb()
169 read_file_from_archive(const char *archive_name, struct archive *archive, in read_file_from_archive() argument
180 (r = archive_read_next_header(archive, entry)) != ARCHIVE_OK) { in read_file_from_archive()
183 archive_name, archive_error_string(archive)); in read_file_from_archive()
191 archive_read_data_skip(archive); in read_file_from_archive()
207 if (archive_read_data(archive, *content, *len) != (ssize_t)*len) { in read_file_from_archive()
[all …]
/netbsd-src/external/bsd/file/dist/magic/magdir/
H A Darchive2 # $File: archive,v 1.193 2023/07/27 17:55:58 christos Exp $
3 # archive: file(1) magic for archive formats (see also "msdos" for self-
37 …member name without digits and without used image suffix and without *.ovf then it is a TAR archive
40 # minimal check and then display tar archive information which can also be
48 >>>156 ubyte 0x4c GNU tar archive
51 >>>156 ubyte 0x4d GNU tar archive
54 >>>156 ubyte 0x56 GNU tar archive
57 >>>156 default x tar archive (V7)
63 >>257 ulong !0 tar archive (old)
70 >>261 ubelong =0x72202000 POSIX tar archive (GNU)
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/binutils/
H A Dbfdtest1.c34 bfd *archive; in main() local
40 archive = bfd_openr (argv[1], NULL); in main()
41 if (archive == NULL) in main()
44 if (!bfd_check_format (archive, bfd_archive)) in main()
46 bfd_close (archive); in main()
50 for (last = bfd_openr_next_archived_file (archive, NULL); in main()
54 next = bfd_openr_next_archived_file (archive, last); in main()
58 for (last = bfd_openr_next_archived_file (archive, NULL); in main()
62 next = bfd_openr_next_archived_file (archive, last); in main()
66 if (!bfd_close (archive)) in main()
/netbsd-src/external/gpl3/binutils/dist/binutils/
H A Dbfdtest1.c34 bfd *archive; in main() local
41 archive = bfd_openr (argv[1], NULL); in main()
42 if (archive == NULL) in main()
45 if (!bfd_check_format (archive, bfd_archive)) in main()
47 bfd_close (archive); in main()
51 for (count = 0, last = bfd_openr_next_archived_file (archive, NULL); in main()
55 next = bfd_openr_next_archived_file (archive, last); in main()
60 for (last = bfd_openr_next_archived_file (archive, NULL); in main()
64 next = bfd_openr_next_archived_file (archive, last); in main()
72 if (!bfd_close (archive)) in main()
/netbsd-src/external/gpl3/gdb.old/dist/
H A Dar-lib88 archive=$3
95 $AR -NOLOGO $operation:"$member" "$archive" || exit $?
148 archive=$file
200 func_at_file "${1#@}" -REMOVE "$archive"
204 $AR -NOLOGO -REMOVE:"$file" "$archive" || exit $?
218 func_at_file "${1#@}" -EXTRACT "$archive"
222 $AR -NOLOGO -EXTRACT:"$file" "$archive" || exit $?
227 $AR -NOLOGO -LIST "$archive" | sed -e 's/\\/\\\\/g' | while read member
229 $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $?
240 orig_archive=$archive
[all …]
/netbsd-src/usr.bin/make/unit-tests/
H A Darchive.mk1 # $NetBSD: archive.mk,v 1.14 2025/01/10 23:00:38 rillig Exp $
7 # archive handling. That's why it deviates from the tutorial style of
11 FILES= archive.mk archive-suffix.mk modmisc.mk ternary.mk varmisc.mk
20 @${MAKE} -f ${MAKEFILE} remove-archive
21 @${MAKE} -f ${MAKEFILE} create-archive
22 @${MAKE} -f ${MAKEFILE} list-archive
23 @${MAKE} -f ${MAKEFILE} list-archive-wildcard
24 @${MAKE} -f ${MAKEFILE} list-archive-undef-archive || ech
[all...]
/netbsd-src/external/bsd/ntp/dist/sntp/libevent/build-aux/
H A Dar-lib88 archive=$3
95 $AR -NOLOGO $operation:"$member" "$archive" || exit $?
148 archive=$file
200 func_at_file "${1#@}" -REMOVE "$archive"
204 $AR -NOLOGO -REMOVE:"$file" "$archive" || exit $?
218 func_at_file "${1#@}" -EXTRACT "$archive"
222 $AR -NOLOGO -EXTRACT:"$file" "$archive" || exit $?
227 $AR -NOLOGO -LIST "$archive" | sed -e 's/\\/\\\\/g' | while read member
229 $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $?
240 orig_archive=$archive
[all …]
/netbsd-src/external/gpl3/gdb/dist/
H A Dar-lib88 archive=$3
95 $AR -NOLOGO $operation:"$member" "$archive" || exit $?
148 archive=$file
200 func_at_file "${1#@}" -REMOVE "$archive"
204 $AR -NOLOGO -REMOVE:"$file" "$archive" || exit $?
218 func_at_file "${1#@}" -EXTRACT "$archive"
222 $AR -NOLOGO -EXTRACT:"$file" "$archive" || exit $?
227 $AR -NOLOGO -LIST "$archive" | sed -e 's/\\/\\\\/g' | while read member
229 $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $?
240 orig_archive=$archive
[all …]
/netbsd-src/external/gpl3/binutils/dist/
H A Dar-lib88 archive=$3
95 $AR -NOLOGO $operation:"$member" "$archive" || exit $?
148 archive=$file
200 func_at_file "${1#@}" -REMOVE "$archive"
204 $AR -NOLOGO -REMOVE:"$file" "$archive" || exit $?
218 func_at_file "${1#@}" -EXTRACT "$archive"
222 $AR -NOLOGO -EXTRACT:"$file" "$archive" || exit $?
227 $AR -NOLOGO -LIST "$archive" | sed -e 's/\\/\\\\/g' | while read member
229 $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $?
240 orig_archive=$archive
[all …]
/netbsd-src/external/lgpl3/mpc/dist/
H A Dar-lib88 archive=$3
95 $AR -NOLOGO $operation:"$member" "$archive" || exit $?
148 archive=$file
200 func_at_file "${1#@}" -REMOVE "$archive"
204 $AR -NOLOGO -REMOVE:"$file" "$archive" || exit $?
218 func_at_file "${1#@}" -EXTRACT "$archive"
222 $AR -NOLOGO -EXTRACT:"$file" "$archive" || exit $?
227 $AR -NOLOGO -LIST "$archive" | sed -e 's/\\/\\\\/g' | while read member
229 $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $?
240 orig_archive=$archive
[all …]
/netbsd-src/external/gpl3/gcc/dist/
H A Dar-lib88 archive=$3
95 $AR -NOLOGO $operation:"$member" "$archive" || exit $?
148 archive=$file
200 func_at_file "${1#@}" -REMOVE "$archive"
204 $AR -NOLOGO -REMOVE:"$file" "$archive" || exit $?
218 func_at_file "${1#@}" -EXTRACT "$archive"
222 $AR -NOLOGO -EXTRACT:"$file" "$archive" || exit $?
227 $AR -NOLOGO -LIST "$archive" | sed -e 's/\\/\\\\/g' | while read member
229 $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $?
240 orig_archive=$archive
[all …]
/netbsd-src/external/gpl3/gcc.old/dist/
H A Dar-lib88 archive=$3
95 $AR -NOLOGO $operation:"$member" "$archive" || exit $?
148 archive=$file
200 func_at_file "${1#@}" -REMOVE "$archive"
204 $AR -NOLOGO -REMOVE:"$file" "$archive" || exit $?
218 func_at_file "${1#@}" -EXTRACT "$archive"
222 $AR -NOLOGO -EXTRACT:"$file" "$archive" || exit $?
227 $AR -NOLOGO -LIST "$archive" | sed -e 's/\\/\\\\/g' | while read member
229 $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $?
240 orig_archive=$archive
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/
H A Dar-lib88 archive=$3
95 $AR -NOLOGO $operation:"$member" "$archive" || exit $?
148 archive=$file
200 func_at_file "${1#@}" -REMOVE "$archive"
204 $AR -NOLOGO -REMOVE:"$file" "$archive" || exit $?
218 func_at_file "${1#@}" -EXTRACT "$archive"
222 $AR -NOLOGO -EXTRACT:"$file" "$archive" || exit $?
227 $AR -NOLOGO -LIST "$archive" | sed -e 's/\\/\\\\/g' | while read member
229 $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $?
240 orig_archive=$archive
[all …]
/netbsd-src/external/gpl3/binutils.old/dist/bfd/doc/
H A Darchive.texi5 An archive (or library) is just another BFD. It has a symbol
8 The big difference between an archive BFD and an ordinary BFD
9 is that the archive doesn't have sections. Instead it has a
12 archive opened for reading will all be opened for reading. You
13 may put either input or output BFDs into an archive opened for
14 output; they will be handled correctly when the archive is closed.
17 the contents of an archive opened for input. You don't
18 have to read the entire archive if you don't want
23 then a second iteration through the members of an archive may
24 return the same BFD. If you close the archive BFD, then all
[all …]
/netbsd-src/external/gpl3/binutils/dist/bfd/doc/
H A Darchive.texi4 An archive (or library) is just another BFD. It has a symbol
7 The big difference between an archive BFD and an ordinary BFD
8 is that the archive doesn't have sections. Instead it has a
11 archive opened for reading will all be opened for reading. You
12 may put either input or output BFDs into an archive opened for
13 output; they will be handled correctly when the archive is closed.
16 the contents of an archive opened for input. You don't
17 have to read the entire archive if you don't want
22 then a second iteration through the members of an archive may
23 return the same BFD. If you close the archive BFD, then all
[all …]
/netbsd-src/external/lgpl3/mpc/dist/build-aux/
H A Dar-lib88 archive=$3
95 $AR -NOLOGO $operation:"$member" "$archive" || exit $?
148 archive=$file
200 func_at_file "${1#@}" -REMOVE "$archive"
204 $AR -NOLOGO -REMOVE:"$file" "$archive" || exit $?
218 func_at_file "${1#@}" -EXTRACT "$archive"
222 $AR -NOLOGO -EXTRACT:"$file" "$archive" || exit $?
227 $AR -NOLOGO -LIST "$archive" | tr -d '\r' | sed -e 's/\\/\\\\/g' \
230 $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $?
241 orig_archive=$archive
[all …]
/netbsd-src/external/lgpl3/mpfr/dist/
H A Dar-lib88 archive=$3
95 $AR -NOLOGO $operation:"$member" "$archive" || exit $?
148 archive=$file
200 func_at_file "${1#@}" -REMOVE "$archive"
204 $AR -NOLOGO -REMOVE:"$file" "$archive" || exit $?
218 func_at_file "${1#@}" -EXTRACT "$archive"
222 $AR -NOLOGO -EXTRACT:"$file" "$archive" || exit $?
227 $AR -NOLOGO -LIST "$archive" | tr -d '\r' | sed -e 's/\\/\\\\/g' \
230 $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $?
241 orig_archive=$archive
[all …]
/netbsd-src/external/mpl/bind/dist/
H A Dar-lib88 archive=$3
95 $AR -NOLOGO $operation:"$member" "$archive" || exit $?
148 archive=$file
200 func_at_file "${1#@}" -REMOVE "$archive"
204 $AR -NOLOGO -REMOVE:"$file" "$archive" || exit $?
218 func_at_file "${1#@}" -EXTRACT "$archive"
222 $AR -NOLOGO -EXTRACT:"$file" "$archive" || exit $?
227 $AR -NOLOGO -LIST "$archive" | tr -d '\r' | sed -e 's/\\/\\\\/g' \
230 $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $?
241 orig_archive=$archive
[all …]
/netbsd-src/external/mit/expat/dist/conftools/
H A Dar-lib88 archive=$3
95 $AR -NOLOGO $operation:"$member" "$archive" || exit $?
148 archive=$file
200 func_at_file "${1#@}" -REMOVE "$archive"
204 $AR -NOLOGO -REMOVE:"$file" "$archive" || exit $?
218 func_at_file "${1#@}" -EXTRACT "$archive"
222 $AR -NOLOGO -EXTRACT:"$file" "$archive" || exit $?
227 $AR -NOLOGO -LIST "$archive" | tr -d '\r' | sed -e 's/\\/\\\\/g' \
230 $AR -NOLOGO -EXTRACT:"$member" "$archive" || exit $?
241 orig_archive=$archive
[all …]
/netbsd-src/external/bsd/libarchive/dist/libarchive/test/
H A Dread_open_memory.c50 static int memory_read_close(struct archive *, void *);
51 static int memory_read_open(struct archive *, void *);
52 static int64_t memory_read_seek(struct archive *, void *, int64_t request, int whence);
53 static int64_t memory_read_skip(struct archive *, void *, int64_t request);
54 static ssize_t memory_read(struct archive *, void *, const void **buff);
55 static int read_open_memory_internal(struct archive *a, const void *buff,
60 read_open_memory(struct archive *a, const void *buff, size_t size, size_t read_size) in read_open_memory()
70 read_open_memory_minimal(struct archive *a, const void *buff, size_t size, size_t read_size) in read_open_memory_minimal()
79 read_open_memory_seek(struct archive *a, const void *buff, size_t size, size_t read_size) in read_open_memory_seek()
85 read_open_memory_internal(struct archive *a, const void *buff, in read_open_memory_internal()
[all …]
H A Dtest_read_filter_program_signature.c28 static unsigned char archive[] = { variable
34 #define signature archive
35 #define badsignature (&archive[1])
42 struct archive *a; in DEFINE_TEST()
59 archive_read_open_memory(a, archive, sizeof(archive))); in DEFINE_TEST()
79 archive_read_open_memory(a, archive, sizeof(archive))); in DEFINE_TEST()
99 archive_read_open_memory(a, archive, sizeof(archive))); in DEFINE_TEST()

12345678910>>...69