Searched refs:archive (Results 1 - 8 of 8) sorted by relevance

/seL4-test-master/projects/util_libs/libcpio/include/cpio/
H A Dcpio.h41 /// The number of files in the CPIO archive
49 * @param[in] archive The location of the CPIO archive
56 * exceeds the number of files in the CPIO archive.
58 void *cpio_get_entry(void *archive, unsigned long len, int index, const char **name, unsigned long *size);
62 * @param[in] archive The location of the CPIO archive
68 void *cpio_get_file(void *archive, unsigned long len, const char *name, unsigned long *size);
71 * Retrieves information about the provided CPIO archive
72 * @param[in] archive Th
[all...]
/seL4-test-master/tools/seL4/misc/
H A Dcpio-strip.c7 /* Tool for removing metadata from a CPIO archive.
10 * seL4 build system forms a CPIO archive of ELF files from the host file
11 * system. This archive inadvertently includes information like the i-node
59 FILE *archive = NULL; local
63 archive = fopen(argv[1], "r+");
64 if (archive == NULL) {
65 perror("failed to open archive");
69 /* Determine the size of the archive, as we'll need to mmap the whole
72 if (fseek(archive, 0, SEEK_END) != 0) {
73 perror("failed to seek archive");
[all...]
/seL4-test-master/projects/util_libs/libcpio/src/
H A Dcpio.c108 int cpio_parse_header(struct cpio_header *archive, unsigned long len, argument
123 if (cpio_strncmp(archive->c_magic, CPIO_HEADER_MAGIC, sizeof(archive->c_magic)) != 0) {
128 filesize = parse_hex_str(archive->c_filesize, sizeof(archive->c_filesize));
129 filename_length = parse_hex_str(archive->c_namesize, sizeof(archive->c_namesize));
136 filename = (char *) archive + sizeof(struct cpio_header);
149 data = (void *) align_up((unsigned long) archive + sizeof(struct cpio_header) +
163 * Get the location of the data in the n'th entry in the given archive fil
171 cpio_get_entry(void *archive, unsigned long len, int n, const char **name, unsigned long *size) argument
203 cpio_get_file(void *archive, unsigned long len, const char *name, unsigned long *size) argument
227 cpio_info(void *archive, unsigned long len, struct cpio_info *info) argument
259 cpio_ls(void *archive, unsigned long len, char **buf, unsigned long buf_len) argument
[all...]
/seL4-test-master/tools/nanopb/tools/
H A Dmake_linux_package.sh18 git archive HEAD | tar x -C $DEST
H A Dmake_mac_package.sh18 git archive HEAD | tar x -C $DEST
H A Dmake_windows_package.sh17 git archive HEAD | tar x -C $DEST
/seL4-test-master/tools/seL4/cmake-tool/helpers/
H A Dshoehorn.py11 in `platform_filename` and the CPIO archive members embedded in the payload
77 Return an io.BytesIO object with the contents of the given archive entry.
87 The payload file is a CPIO archive with an object file header (e.g., an ELF
88 prologue) prepended. The embedded CPIO archive file is expected to be of
89 the format the `file` command calls an "ASCII cpio archive (SVR4 with no
120 in `platform_filename` and the CPIO archive members embedded in the payload
133 help='ELF-loader image file (e.g., archive.o)')
146 with libarchive.memory_reader(get_cpio(image)) as archive:
147 for entry in archive:
199 # implemented on the archive
[all...]
/seL4-test-master/projects/musllibc/
H A DMakefile.muslc229 git --git-dir=$(srcdir)/.git archive --format=tar.gz --prefix=$(patsubst %.tar.gz,%,$@)/ -o $@ $(patsubst musl-git-%.tar.gz,%,$@)
232 git --git-dir=$(srcdir)/.git archive --format=tar.gz --prefix=$(patsubst %.tar.gz,%,$@)/ -o $@ v$(patsubst musl-%.tar.gz,%,$@)

Completed in 95 milliseconds