/external/llvm/test/tools/llvm-readobj/ |
D | macho-universal-x86_64.i386.test | 7 RUN: llvm-readobj -h %p/Inputs/macho-universal-archive.x86_64.i386 \ 8 RUN: | FileCheck %s -check-prefix MULTIHEADER-ARCHIVE 10 RUN: llvm-readobj -sections %p/Inputs/macho-universal-archive.x86_64.i386 \ 11 RUN: | FileCheck %s -check-prefix MULTISECTIONS-ARCHIVE 149 MULTIHEADER-ARCHIVE: File: hello.o 150 MULTIHEADER-ARCHIVE: Format: Mach-O 64-bit x86-64 151 MULTIHEADER-ARCHIVE: Arch: x86_64 152 MULTIHEADER-ARCHIVE: AddressSize: 64bit 153 MULTIHEADER-ARCHIVE: MachHeader { 154 MULTIHEADER-ARCHIVE: Magic: Magic64 (0xFEEDFACF) [all …]
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/examples/ |
D | Expander.java | 57 * Expands {@code archive} into {@code targetDirectory}. 59 * <p>Tries to auto-detect the archive's format.</p> 61 * @param archive the file to expand 64 * @throws ArchiveException if the archive cannot be read for other reasons 66 public void expand(File archive, File targetDirectory) throws IOException, ArchiveException { in expand() argument 68 try (InputStream i = new BufferedInputStream(Files.newInputStream(archive.toPath()))) { in expand() 71 expand(format, archive, targetDirectory); in expand() 75 * Expands {@code archive} into {@code targetDirectory}. 77 * @param archive the file to expand 79 * @param format the archive format. This uses the same format as [all …]
|
/external/llvm/test/tools/dsymutil/ |
D | basic-linking.test | 3 …erbose -oso-prepend-path=%p %p/Inputs/basic-archive.macho.x86_64 | FileCheck %s --check-prefix=CHE… 4 …6_64 %p/Inputs/basic-archive.macho.x86_64 | FileCheck %s --check-prefix=CHECK --check-prefix=CHECK… 101 ================================= Archive link ================================ 102 CHECK-ARCHIVE: DEBUG MAP OBJECT: {{.*}}basic1.macho.x86_64.o 103 CHECK-ARCHIVE: Input compilation unit: 104 CHECK-ARCHIVE-NEXT: TAG_compile_unit 105 CHECK-ARCHIVE-NOT: TAG 106 CHECK-ARCHIVE: AT_name {{.*}}basic1.c 107 CHECK-ARCHIVE-NOT: Found valid debug map entry 108 CHECK-ARCHIVE: Found valid debug map entry: _main 0000000000000000 => 0000000100000ea0 [all …]
|
D | debug-map-parsing.test | 3 …ug-map -oso-prepend-path=%p %p/Inputs/basic-archive.macho.x86_64 | FileCheck %s --check-prefix=CHE… 43 Check thet we correctly handle debug maps with archive members (including only 44 opening the archive once if mulitple of its members are used). 46 CHECK-ARCHIVE: trying to open {{.*}}basic-archive.macho.x86_64' 47 CHECK-ARCHIVE-NEXT: loaded file. 48 CHECK-ARCHIVE-NEXT: trying to open {{.*}}/Inputs/basic1.macho.x86_64.o' 49 CHECK-ARCHIVE-NEXT: loaded file. 50 CHECK-ARCHIVE-NEXT: trying to open {{.*}}/libbasic.a(basic2.macho.x86_64.o)' 51 CHECK-ARCHIVE-NEXT: opened new archive {{.*}}/libbasic.a' 52 CHECK-ARCHIVE-NEXT: found member in current archive. [all …]
|
/external/llvm/bindings/ocaml/llvm/ |
D | META.llvm.in | 4 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 …]
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/sevenz/ |
D | SevenZFile.java | 83 private final Archive archive; field in SevenZFile 100 * Reads a file as 7z archive 103 * @param password optional password if the archive is encrypted 104 * @throws IOException if reading the archive fails 113 * Reads a file as 7z archive 116 * @param password optional password if the archive is encrypted - 119 * @throws IOException if reading the archive fails 128 * Reads a SeekableByteChannel as 7z archive 132 * allows you to read from an in-memory archive.</p> 135 * @throws IOException if reading the archive fails [all …]
|
/external/llvm/docs/CommandGuide/ |
D | llvm-ar.rst | 9 **llvm-ar** [-]{dmpqrtx}[Rabfikou] [relpos] [count] <archive> [files...] 18 to produce archive libraries by LLVM bitcode that can be linked into an 19 LLVM program. However, the archive can contain any kind of file. By default, 22 of the archive. 24 The **llvm-ar** command can be used to *read* SVR4, GNU and BSD style archive 26 SVR4 or BSD style archive is used with the ``r`` (replace) or ``q`` (quick 27 update) operations, the archive will be reconstructed in GNU format. 52 perform on the archive, a variety of modifiers for that operation, the name of 53 the archive file, and an optional list of file names. These options are used to 54 determine how **llvm-ar** should process the archive file. [all …]
|
/external/python/cpython3/Lib/ |
D | zipimport.py | 4 - zipimporter: a class; its constructor takes a path to a Zip archive. 7 - _zip_directory_cache: a dict, mapping archive paths to zip directory 52 valid directory inside the archive. 55 archive. 57 The 'archive' attribute of zipimporter objects contains the name of the 61 # Split the "subdirectory" from the Zip archive path, lookup a matching 63 # if found, or else read it from the archive. 69 raise ZipImportError('archive path is empty', path=path) 98 self.archive = path 140 return None, [f'{self.archive}{path_sep}{modpath}'] [all …]
|
D | zipapp.py | 16 # because the resulting archive may be intended to be run under Python 2. 38 def _maybe_open(archive, mode): argument 39 if isinstance(archive, (str, os.PathLike)): 40 with open(archive, mode) as f: 43 yield archive 53 def _copy_archive(archive, new_archive, interpreter=None): argument 54 """Copy an application archive, modifying the shebang line.""" 55 with _maybe_open(archive, 'rb') as src: 78 """Create an application archive from SOURCE. 81 object referring to an existing archive. [all …]
|
/external/rust/crates/grpcio-sys/grpc/bazel/ |
D | grpc_deps.bzl | 158 # to obtain a boringssl archive with consistent sha256 162 …s://storage.googleapis.com/grpc-bazel-mirror/github.com/google/boringssl/archive/688fc5cf542886867… 163 … "https://github.com/google/boringssl/archive/688fc5cf5428868679d2ae1072cad81055752068.tar.gz", 174 …"https://storage.googleapis.com/grpc-bazel-mirror/github.com/madler/zlib/archive/cacf7f1d4e3d44d87… 175 … "https://github.com/madler/zlib/archive/cacf7f1d4e3d44d871b605da3b647f07d718623f.tar.gz", 185 …ps://storage.googleapis.com/grpc-bazel-mirror/github.com/google/protobuf/archive/436bd7880e4585329… 186 … "https://github.com/google/protobuf/archive/436bd7880e458532901c58f4d9d1ea23fa7edd52.tar.gz", 199 …://storage.googleapis.com/grpc-bazel-mirror/github.com/google/googletest/archive/c9ccac7cb73459018… 200 … "https://github.com/google/googletest/archive/c9ccac7cb7345901884aabf5d1a786cfa6e2f397.tar.gz", 211 …/storage.googleapis.com/grpc-bazel-mirror/github.com/bazelbuild/rules_cc/archive/624b5d59dfb45672d… [all …]
|
/external/llvm/test/tools/llvm-objdump/X86/ |
D | macho-archive-headers.test | 1 RUN: llvm-objdump %p/Inputs/macho-universal-archive.x86_64.i386 -macho -archive-headers -arch all \ 3 RUN: llvm-objdump %p/Inputs/macho-universal-archive.x86_64.i386 -macho -archive-headers -arch all -… 5 RUN: llvm-objdump %p/Inputs/macho-universal-archive.x86_64.i386 -macho -archive-headers -arch all -… 9 CHECK: Archive : {{.*}}/macho-universal-archive.x86_64.i386 (architecture x86_64) 12 CHECK: Archive : {{.*}}/macho-universal-archive.x86_64.i386 (architecture i386) 16 OFFSETS: Archive : {{.*}}/macho-universal-archive.x86_64.i386 (architecture x86_64) 19 OFFSETS: Archive : {{.*}}/macho-universal-archive.x86_64.i386 (architecture i386) 23 NON-VERBOSE: Archive : {{.*}}/macho-universal-archive.x86_64.i386 (architecture x86_64) 26 NON-VERBOSE: Archive : {{.*}}/macho-universal-archive.x86_64.i386 (architecture i386)
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/ |
D | SevenZTestCase.java | 80 try (SevenZFile archive = new SevenZFile(output)) { in testSevenZArchiveCreation() argument 83 entry = archive.getNextEntry(); in testSevenZArchiveCreation() 87 entry = archive.getNextEntry(); in testSevenZArchiveCreation() 91 assert (archive.getNextEntry() == null); in testSevenZArchiveCreation() 143 … try (SevenZFile archive = new SevenZFile(getFile("bla.encrypted.7z"), "foo".toCharArray())) { in singleByteReadConsistentlyReturnsMinusOneAtEofUsingAES() argument 144 singleByteReadConsistentlyReturnsMinusOneAtEof(archive); in singleByteReadConsistentlyReturnsMinusOneAtEofUsingAES() 150 try (SevenZFile archive = new SevenZFile(output)) { in singleByteReadConsistentlyReturnsMinusOneAtEof() argument 151 singleByteReadConsistentlyReturnsMinusOneAtEof(archive); in singleByteReadConsistentlyReturnsMinusOneAtEof() 155 … private void singleByteReadConsistentlyReturnsMinusOneAtEof(SevenZFile archive) throws Exception { in singleByteReadConsistentlyReturnsMinusOneAtEof() argument 156 SevenZArchiveEntry entry = archive.getNextEntry(); in singleByteReadConsistentlyReturnsMinusOneAtEof() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Object/ |
D | Archive.cpp | 1 //===- Archive.cpp - ar File Format implementation ------------------------===// 13 #include "llvm/Object/Archive.h" 44 void Archive::anchor() {} in anchor() 48 std::string StringMsg = "truncated or malformed archive (" + Msg.str() + ")"; in malformedError() 53 ArchiveMemberHeader::ArchiveMemberHeader(const Archive *Parent, in ArchiveMemberHeader() 64 std::string Msg("remaining size of archive too small for next archive " in ArchiveMemberHeader() 83 std::string Msg("terminator characters in archive member \"" + Buf + in ArchiveMemberHeader() 84 "\" not the correct \"`\\n\" values for the archive " in ArchiveMemberHeader() 99 // valid for the kind of archive. If it is not valid it returns an Error. 103 if (Kind == Archive::K_BSD || Kind == Archive::K_DARWIN64) { in getRawName() [all …]
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/sevenz/ |
D | SevenZOutputFileTest.java | 102 try (SevenZFile archive = new SevenZFile(output)) { in testDirectoriesAndEmptyFiles() argument 103 SevenZArchiveEntry entry = archive.getNextEntry(); in testDirectoriesAndEmptyFiles() 109 entry = archive.getNextEntry(); in testDirectoriesAndEmptyFiles() 119 entry = archive.getNextEntry(); in testDirectoriesAndEmptyFiles() 125 assertEquals(0, archive.read()); in testDirectoriesAndEmptyFiles() 127 entry = archive.getNextEntry(); in testDirectoriesAndEmptyFiles() 133 entry = archive.getNextEntry(); in testDirectoriesAndEmptyFiles() 138 assertEquals(2, archive.read(content)); in testDirectoriesAndEmptyFiles() 143 assert (archive.getNextEntry() == null); in testDirectoriesAndEmptyFiles() 159 try (SevenZFile archive = new SevenZFile(output)) { in testDirectoriesOnly() argument [all …]
|
/external/lzma/CPP/7zip/ |
D | 7zip.mak | 66 $(AR_OBJS): ../../Archive/$(*B).cpp 71 $(AR_COMMON_OBJS): ../../Archive/Common/$(*B).cpp 76 $(7Z_OBJS): ../../Archive/7z/$(*B).cpp 81 $(CAB_OBJS): ../../Archive/Cab/$(*B).cpp 86 $(CHM_OBJS): ../../Archive/Chm/$(*B).cpp 91 $(COM_OBJS): ../../Archive/Com/$(*B).cpp 96 $(ISO_OBJS): ../../Archive/Iso/$(*B).cpp 101 $(NSIS_OBJS): ../../Archive/Nsis/$(*B).cpp 106 $(RAR_OBJS): ../../Archive/Rar/$(*B).cpp 111 $(TAR_OBJS): ../../Archive/Tar/$(*B).cpp [all …]
|
/external/llvm/test/Object/ |
D | nm-archive.test | 1 RUN: llvm-nm -a %p/Inputs/archive-test.a-coff-i386 \ 12 RUN: llvm-nm -a -o %p/Inputs/archive-test.a-coff-i386 \ 15 COFF-o: {{.*}}/archive-test.a-coff-i386:trivial-object-test.coff-i386: 00000000 d .data 16 COFF-o: {{.*}}/archive-test.a-coff-i386:trivial-object-test.coff-i386: 00000000 t .text 17 COFF-o: {{.*}}/archive-test.a-coff-i386:trivial-object-test.coff-i386: 00000000 d L_.str 18 COFF-o: {{.*}}/archive-test.a-coff-i386:trivial-object-test.coff-i386: U _SomeOtherFunction 19 COFF-o: {{.*}}/archive-test.a-coff-i386:trivial-object-test.coff-i386: 00000000 T _main 20 COFF-o: {{.*}}/archive-test.a-coff-i386:trivial-object-test.coff-i386: U _puts 42 Test we don't error with an archive with no symtab. 43 RUN: llvm-nm %p/Inputs/archive-test.a-gnu-no-symtab [all …]
|
/external/python/cpython3/Doc/library/ |
D | zipapp.rst | 26 can be used to create an executable archive from a directory containing 27 Python code. When run, the archive will execute the ``main`` function from 28 the module ``myapp`` in the archive. 48 If *source* is a directory, this will create an archive from the contents of 49 *source*. If *source* is a file, it should be an archive, and it will be 50 copied to the target archive (or the contents of its shebang line will be 64 An output filename must be specified if the *source* is an archive (and in 69 Add a ``#!`` line to the archive specifying *interpreter* as the command 70 to run. Also, on POSIX, make the archive executable. The default is to 75 Write a ``__main__.py`` file to the archive that executes *mainfn*. The [all …]
|
/external/python/cpython2/Doc/library/ |
D | zipfile.rst | 5 :synopsis: Read and write ZIP-format archive files. 15 The ZIP file format is a common archive and compression standard. This module 54 Class used to represent information about a member of an archive. Instances 58 module. *filename* should be the full name of the archive member, and 74 The numeric constant for an uncompressed archive member. 90 Information about the Info-ZIP project's ZIP archive programs and development 107 ZIP file, then a new ZIP archive is appended to the file. This is meant for 108 adding a ZIP archive to another file (such as :file:`python.exe`). 113 *compression* is the ZIP compression method to use when writing the archive, 127 :meth:`closed <close>` without adding any files to the archive, the appropriate [all …]
|
/external/elfutils/src/ |
D | make-debug-archive.in | 3 # Script to make an offline archive for debugging with libdwfl-based tools. 5 # make-debug-archive ARCHIVE {options} 6 # make-debug-archive --kernel [--force] [RELEASE] 11 # The archive installed by --kernel be used automatically by -K. 12 # An offline archive can be used via -e in any tool that accepts those options. 29 echo "Usage: $0 ARCHIVE {options}" 85 archive=$dir/debug.a 95 if [ $force_kernel = no -a "$archive" -nt "$dep" ]; then 100 [ ! -e "$archive" ] || $sudo $RM -f "$archive" || exit 102 set "$archive" "-K$release" [all …]
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/ |
D | AbstractTestCase.java | 51 private File archive; // used to delete the archive in tearDown field in AbstractTestCase 52 protected List<String> archiveList; // Lists the content of the archive as originally created 60 archive = null; in setUp() 89 if (!tryHardToDelete(archive)) { in tearDown() 91 throw new Exception("Could not delete "+archive.getPath()); in tearDown() 142 * Creates an archive of textbased files in several directories. The 144 * tar, cpio, jar, ar. The archive is created as a temp file. 146 * The archive contains the following files: 160 * the identifier of this archive 169 archive = File.createTempFile("test", "." + archivename); in createArchive() [all …]
|
/external/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/ar/ |
D | ArArchiveInputStreamTest.java | 44 private void checkLongNameEntry(final String archive) throws Exception { in checkLongNameEntry() argument 45 try (final FileInputStream fis = new FileInputStream(getFile(archive)); in checkLongNameEntry() 66 ArArchiveInputStream archive = new ArArchiveInputStream(in)) { in singleByteReadConsistentlyReturnsMinusOneAtEof() 67 ArchiveEntry e = archive.getNextEntry(); in singleByteReadConsistentlyReturnsMinusOneAtEof() 68 IOUtils.toByteArray(archive); in singleByteReadConsistentlyReturnsMinusOneAtEof() 69 assertEquals(-1, archive.read()); in singleByteReadConsistentlyReturnsMinusOneAtEof() 70 assertEquals(-1, archive.read()); in singleByteReadConsistentlyReturnsMinusOneAtEof() 78 ArArchiveInputStream archive = new ArArchiveInputStream(in)) { in multiByteReadConsistentlyReturnsMinusOneAtEof() 79 ArchiveEntry e = archive.getNextEntry(); in multiByteReadConsistentlyReturnsMinusOneAtEof() 80 IOUtils.toByteArray(archive); in multiByteReadConsistentlyReturnsMinusOneAtEof() [all …]
|
/external/llvm/lib/Object/ |
D | Archive.cpp | 1 //===- Archive.cpp - ar File Format implementation --------------*- C++ -*-===// 14 #include "llvm/Object/Archive.h" 28 void Archive::anchor() { } in anchor() 90 Archive::Child::Child(const Archive *Parent, StringRef Data, in Child() 94 Archive::Child::Child(const Archive *Parent, const char *Start, in Child() 122 ErrorOr<uint64_t> Archive::Child::getSize() const { in getSize() 132 ErrorOr<uint64_t> Archive::Child::getRawSize() const { in getRawSize() 139 bool Archive::Child::isThinMember() const { in isThinMember() 144 ErrorOr<std::string> Archive::Child::getFullName() const { in getFullName() 159 ErrorOr<StringRef> Archive::Child::getBuffer() const { in getBuffer() [all …]
|
/external/firebase-messaging/ |
D | METADATA | 8 type: ARCHIVE 13 type: ARCHIVE 17 type: ARCHIVE 21 type: ARCHIVE 25 type: ARCHIVE 29 type: ARCHIVE 33 type: ARCHIVE 37 type: ARCHIVE 41 type: ARCHIVE 45 type: ARCHIVE [all …]
|
/external/tensorflow/tensorflow/ |
D | workspace2.bzl | 137 …"https://storage.googleapis.com/mirror.tensorflow.org/github.com/google/XNNPACK/archive/8c96521d55… 138 … "https://github.com/google/XNNPACK/archive/8c96521d55877cf971fc9318603798d923e0059a.zip", 148 …torage.googleapis.com/mirror.tensorflow.org/github.com/Maratyszcza/FXdiv/archive/63058eff77e11aa15… 149 … "https://github.com/Maratyszcza/FXdiv/archive/63058eff77e11aa15bf531df5dd34395ec3017c8.zip", 158 ….googleapis.com/mirror.tensorflow.org/github.com/Maratyszcza/pthreadpool/archive/b8374f80e42010941… 159 … "https://github.com/Maratyszcza/pthreadpool/archive/b8374f80e42010941bda6c85b0e3f1a1bd77a1e0.zip", 170 …ge.googleapis.com/mirror.tensorflow.org/github.com/NVIDIA/cudnn-frontend/archive/73210a930333eaf66… 171 … "https://github.com/NVIDIA/cudnn-frontend/archive/73210a930333eaf66b42b01693bce7b70719c354.zip", 181 …/storage.googleapis.com/mirror.tensorflow.org/github.com/oneapi-src/oneDNN/archive/v0.21.3.tar.gz", 182 "https://github.com/oneapi-src/oneDNN/archive/v0.21.3.tar.gz", [all …]
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/zip/ |
D | ZipFile.java | 133 private final SeekableByteChannel archive; field in ZipFile 157 * @param f the archive. 168 * @param name name of the archive. 180 * @param name name of the archive. 194 * @param f the archive. 208 * @param f the archive. 227 * allows you to read from an in-memory archive.</p> 229 * @param channel the archive. 236 this(channel, "unknown archive", ZipEncodingHelper.UTF8, true); in ZipFile() 245 * allows you to read from an in-memory archive.</p> [all …]
|