Home
last modified time | relevance | path

Searched full:archive (Results 1 – 25 of 1155) sorted by relevance

12345678910>>...47

/linux/tools/lib/bpf/
H A Dzip.c41 /* Number of the file containing this structure or 0xFFFF if ZIP64 archive.
42 * Zip archive might span multiple files (disks).
47 * 0xFFFF if ZIP64 archive.
52 * archive.
57 * archive.
61 /* Size of the central directory record or 0xFFFFFFFF if ZIP64 archive. */
64 /* Offset of the central directory from the beginning of the archive or
65 * 0xFFFFFFFF if ZIP64 archive.
97 /* Number of the disk where the file starts or 0xFFFF if ZIP64 archive. */
135 static void *check_access(struct zip_archive *archive, __u3 argument
146 try_parse_end_of_cd(struct zip_archive * archive,__u32 offset) try_parse_end_of_cd() argument
175 find_cd(struct zip_archive * archive) find_cd() argument
200 struct zip_archive *archive; zip_archive_open() local
241 zip_archive_close(struct zip_archive * archive) zip_archive_close() argument
247 local_file_header_at_offset(struct zip_archive * archive,__u32 offset) local_file_header_at_offset() argument
259 get_entry_at_offset(struct zip_archive * archive,__u32 offset,struct zip_entry * out) get_entry_at_offset() argument
298 zip_archive_find_entry(struct zip_archive * archive,const char * file_name,struct zip_entry * out) zip_archive_find_entry() argument
[all...]
H A Dzip.h8 /* Represents an open zip archive.
19 * file in a zip archive.
34 /* Offset of the file data within the archive. */
38 /* Open a zip archive. Returns NULL in case of an error. */
41 /* Close a zip archive and release resources. */
42 void zip_archive_close(struct zip_archive *archive);
44 /* Look up an entry corresponding to a file in given zip archive. */
45 int zip_archive_find_entry(struct zip_archive *archive, const char *name, struct zip_entry *out);
/linux/Documentation/arch/arm/
H A Dmarvell.rst21 - Datasheet: https://web.archive.org/web/20210124231420/http://csclub.uwaterloo.ca/~board/ts7800/MV88F5182-datasheet.pdf
22 - Programmer's User Guide: https://web.archive.org/web/20210124231536/http://csclub.uwaterloo.ca/~board/ts7800/MV88F5182-opensource-manual.pdf
23 - User Manual: https://web.archive.org/web/20210124231631/http://csclub.uwaterloo.ca/~board/ts7800/MV88F5182-usermanual.pdf
24 - Functional Errata: https://web.archive.org/web/20210704165540/https://www.digriz.org.uk/ts78xx/88F5182_Functional_Errata.pdf
27 - Datasheet: https://web.archive.org/web/20131028144728/http://www.ocmodshop.com/images/reviews/networking/qnap_ts409u/marvel_88f5281_data_sheet.pdf
30 https://web.archive.org/web/20080607215437/http://www.marvell.com/products/media/index.jsp
44 - Product Brief : https://web.archive.org/web/20111027032509/http://www.marvell.com/embedded-processors/armada-300/assets/armada_310.pdf
47 - Product Brief : https://web.archive.org/web/20111027032509/http://www.marvell.com/embedded-processors/armada-300/assets/armada_310.pdf
50 - Product Brief : https://web.archive.org/web/20130730072715/http://www.marvell.com/embedded-processors/kirkwood/assets/88F6190-003_WEB.pdf
51 - Hardware Spec : https://web.archive
[all...]
/linux/Documentation/filesystems/
H A Dramfs-rootfs-initramfs.rst94 All 2.6 Linux kernels contain a gzipped "cpio" format archive, which is
100 archive is extracted into it, the kernel will fall through to the older code
106 - The old initrd was always a separate file, while the initramfs archive is
108 devoted to generating this archive during the build.)
112 initramfs archive is a gzipped cpio archive (like tar only simpler,
139 archive and links it into the resulting kernel binary. By default, this
140 archive is empty (consuming 134 bytes on x86).
144 initramfs archive, which will automatically be incorporated into the
146 archive,
[all...]
/linux/Documentation/driver-api/early-userspace/
H A Dearly_userspace_support.rst15 - gen_init_cpio, a program that builds a cpio-format archive
16 containing a root filesystem image. This archive is compressed, and
26 archive to be used as the image or have the kernel build process build
29 CPIO ARCHIVE method
32 You can create a cpio archive that contains the early userspace image.
33 Your cpio archive should be specified in CONFIG_INITRAMFS_SOURCE and it
36 combination with a cpio archive.
42 source parts rather than supplying a cpio archive. This method provides
146 initrd format, an cpio archive. It must be called "/init". This binary
150 comes via an initramfs cpio archive
[all...]
H A Dbuffer-format.rst10 is different. The initramfs buffer contains an archive which is
16 archive can be compressed using gzip(1), or any other algorithm provided
53 The cpio "TRAILER!!!" entry (cpio end-of-archive) is optional, but is
95 If the filename is "TRAILER!!!" this is actually an end-of-archive
96 marker; the c_filesize for an end-of-archive marker must be zero.
116 When a "TRAILER!!!" end-of-archive marker is seen, the tuple buffer is
125 end-of-archive marker, or
/linux/tools/perf/Documentation/
H A Dperf-archive.txt1 perf-archive(1)
6 perf-archive - Create archive with object files with build-ids found in perf.data file
11 'perf archive' [file]
H A Dandroid.txt62 If you also want to use perf-archive you need busybox tools for Android.
63 For installing perf-archive, you first need to replace #!/bin/bash with #!/system/bin/sh:
64 sed 's/#!\/bin\/bash/#!\/system\/bin\/sh/g' perf-archive >> /tmp/perf-archive
65 chmod +x /tmp/perf-archive
66 adb push /tmp/perf-archive /data/perf-archive
/linux/Documentation/scsi/
H A Dppa.rst8 http://web.archive.org/web/%2E/http://www.torque.net/~campbell/
10 Driver archive for old drivers:
11 http://web.archive.org/web/%2E/http://www.torque.net/~campbell/ppa
14 http://web.archive.org/web/%2E/http://www.torque.net/parport/
/linux/scripts/clang-tools/
H A Dgen_compile_commands.py112 def cmdfiles_for_a(archive, ar): argument
113 """Generate the iterator of .cmd files associated with the archive.
115 Parse the given archive, and yield every .cmd file used to build it.
118 archive: The archive to parse
123 for obj in subprocess.check_output([ar, '-t', archive]).decode().split():
/linux/scripts/
H A DMakefile.package28 quiet_cmd_archive = ARCHIVE $@
29 cmd_archive = git -C $(srctree) $(git-config-tar$(suffix $@)) archive \
30 --output=$$(realpath $@) $(archive-args)
43 $(linux-tarballs): archive-args = --prefix=linux/ $$(cat $<)
45 $(call if_changed,archive)
210 perf-archive-args = --add-file=$$(realpath $(word 2, $^)) \
218 $(perf-tarballs): archive-args = --prefix=perf-$(KERNELVERSION)/ $(perf-archive-args)
220 $(call if_changed,archive)
/linux/Documentation/admin-guide/acpi/
H A Dinitrd_table_override.rst69 # Add the raw ACPI tables to an uncompressed cpio archive.
71 # archive. Note that if the table put here matches a platform table
85 # The uncompressed cpio archive must be the first. Other, typically
87 # one. Following command creates the uncompressed cpio archive and
H A Dssdt-overlays.rst84 # Add the raw ACPI tables to an uncompressed cpio archive.
86 # cpio archive.
87 # The uncompressed cpio archive must be the first.
93 # Create the uncompressed cpio archive and concatenate the original initrd
/linux/drivers/gpu/drm/ci/
H A Dgitlab-ci.yml13 FDO_UPSTREAM_REPO: helen.fornazier/linux # The repo where the git-archive daily runs
59 - echo -e "\e[0Ksection_start:$(date +%s):drm_ci_download_section[collapsed=true]\r\e[0KDownloading mesa from $DRM_CI_PROJECT_URL/-/archive/$DRM_CI_COMMIT_SHA/mesa-$DRM_CI_COMMIT_SHA.tar.gz"
61 - curl --output - $DRM_CI_PROJECT_URL/-/archive/$DRM_CI_COMMIT_SHA/mesa-$DRM_CI_COMMIT_SHA.tar.gz | tar -xz
122 - git-archive
245 # Git archive
246 make-git-archive:
249 stage: git-archive
/linux/tools/testing/selftests/nolibc/
H A Drun-tests.sh136 archive="${download_location}${archive_name}"
137 stamp="${archive}.stamp"
143 curl -o "${archive}" --fail --continue-at - "${url}"
144 tar -C "${download_location}" -xf "${archive}"
/linux/include/uapi/linux/
H A Dmtio.h96 #define MT_ISARCHIVE_5945L2 0x04 /* Archive 5945L-2, QIC-24, QIC-02? */
99 #define MT_ISARCHIVE_VP60I 0x07 /* Archive VP60i, QIC-02 */
100 #define MT_ISARCHIVE_2150L 0x08 /* Archive Viper 2150L */
101 #define MT_ISARCHIVE_2060L 0x09 /* Archive Viper 2060L */
102 #define MT_ISARCHIVESC499 0x0A /* Archive SC-499 QIC-36 controller */
/linux/Documentation/bpf/libbpf/
H A Dindex.rst31 search its `archive <https://lore.kernel.org/bpf/>`_. Please search the archive
/linux/tools/testing/selftests/
H A Dgen_kselftest_tar.sh54 # "archive created" line in their scripts.
57 echo "Kselftest archive kselftest${ext} created!"
/linux/kernel/
H A Dgen_kheaders.sh4 # This script generates an archive consisting of kernel headers
45 # Create archive and try to normalize metadata for reproducibility.
/linux/Documentation/maintainer/
H A Dconfigure-git.rst36 The web site https://lore.kernel.org is meant as a grand archive of all mail
40 reference back to the lore archive so that people that browse the commit
/linux/init/
H A Dinitramfs.c369 error("malformed archive"); in do_name()
440 error("malformed archive"); in do_symlink()
492 error("junk within compressed archive"); in flush_buffer()
502 * unpack_to_rootfs - decompress and extract an initramfs archive
503 * @buf: input initramfs archive to extract
559 error("invalid magic at start of compressed archive"); in unpack_to_rootfs()
561 error("junk at the end of compressed archive"); in unpack_to_rootfs()
/linux/arch/mips/pci/
H A Dpci-tx4927.c3 * and RBTX49xx patch from CELF patch archive.
10 * License. See the file "COPYING" in the main directory of this archive
H A Dpci-tx4938.c3 * and RBTX49xx patch from CELF patch archive.
10 * License. See the file "COPYING" in the main directory of this archive
/linux/usr/
H A DKconfig10 This can be either a single cpio archive with a .cpio suffix or a
12 initramfs image. A cpio archive should contain a filesystem archive
H A Dgen_initramfs.sh8 # the cpio archive.
27 <cpio_source> File list or directory for cpio archive.
247 # If output_file is set we will generate cpio archive

12345678910>>...47