/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/llvm-project/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/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/llvm-project/llvm/test/tools/llvm-objdump/ |
D | malformed-archives.test | 1 ## These test checks that llvm-objdump will not crash with malformed archive 5 ## Check we report an error when unable to read the size field on an archive as an integer. 9 # RUN: not llvm-objdump --macho --archive-headers %t.libbogus1a.a 2>&1 | \ 13 # RUN: not llvm-objdump --macho --archive-headers %t.libbogus1b.a 2>&1 | \ 16 …: truncated or malformed archive (characters in size field in archive header are not all decimal n… 23 ## Check we report an error when an archive is truncated and are unable to skip the data of a membe… 26 # RUN: not llvm-objdump --macho --archive-headers %t.libbogus2.a 2>&1 | \ 29 …BOGUS2: '[[FILE]]': truncated or malformed archive (offset to next archive member past the end of … 39 # RUN: not llvm-objdump --macho --archive-headers %t.libbogus3.a 2>&1 | \ 42 # BOGUS3: '[[FILE]]': truncated or malformed archive (remaining size of archive too small for next … [all …]
|
/external/llvm-project/llvm/test/tools/llvm-objcopy/MachO/ |
D | universal-object.test | 15 ## Case 2: copy a universal object file containing an archive. 16 # RUN: rm -f %t.archive.i386 17 # RUN: llvm-ar cr %t.archive.i386 %t.i386 18 # RUN: llvm-lipo %t.archive.i386 %t.x86_64 -create -output %t.universal.containing.archive 19 # RUN: llvm-objcopy %t.universal.containing.archive %t.universal.containing.archive.copy 20 # RUN: llvm-lipo %t.universal.containing.archive.copy -archs | FileCheck --check-prefix=VERIFY_ARCH… 21 # RUN: llvm-lipo %t.universal.containing.archive.copy -thin i386 -output %t.archive.i386.copy 22 # RUN: llvm-lipo %t.universal.containing.archive.copy -thin x86_64 -output %t.archive.x86_64.copy 23 # RUN: cmp %t.archive.i386 %t.archive.i386.copy 24 # RUN: cmp %t.x86_64 %t.archive.x86_64.copy [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/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/examples/ |
D | Expander.java | 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() 84 …public void expand(String format, File archive, File targetDirectory) throws IOException, ArchiveE… in expand() argument 86 … try (SeekableByteChannel c = FileChannel.open(archive.toPath(), StandardOpenOption.READ)) { in expand() 91 try (InputStream i = new BufferedInputStream(Files.newInputStream(archive.toPath()))) { in expand() 106 …public void expand(InputStream archive, File targetDirectory) throws IOException, ArchiveException… in expand() argument 107 expand(new ArchiveStreamFactory().createArchiveInputStream(archive), targetDirectory); in expand() 120 public void expand(String format, InputStream archive, File targetDirectory) in expand() argument 122 … expand(new ArchiveStreamFactory().createArchiveInputStream(format, archive), targetDirectory); in expand() [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/llvm-project/llvm/docs/CommandGuide/ |
D | llvm-ar.rst | 9 :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 …]
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/archivers/sevenz/ |
D | SevenZFile.java | 83 private final Archive archive; field in SevenZFile 241 archive = readHeaders(password); in SevenZFile() 292 if (currentEntryIndex >= archive.files.length - 1) { in getNextEntry() 296 final SevenZArchiveEntry entry = archive.files[currentEntryIndex]; in getNextEntry() 316 return Arrays.asList(archive.files); in getEntries() 352 Archive archive = new Archive(); in readHeaders() local 355 buf = readEncodedHeader(buf, archive, password); in readHeaders() 357 archive = new Archive(); in readHeaders() 361 readHeader(buf, archive); in readHeaders() 365 return archive; in readHeaders() [all …]
|
/external/elfutils/src/ |
D | make-debug-archive.in | 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" 109 archive="$1" 112 case "$archive" in 114 *) archive="`/bin/pwd`/$archive" ;; 118 new_archive="$archive.new" 130 $sudo $MV -f "$new_archive" "$archive"
|
/external/llvm-project/llvm/test/tools/llvm-objdump/MachO/ |
D | archive-headers.test | 1 RUN: llvm-objdump %p/Inputs/macho-universal-archive.x86_64.i386 --macho --archive-headers --arch al… 3 …UN: llvm-objdump %p/Inputs/macho-universal-archive.x86_64.i386 --macho --archive-headers --arch al… 5 RUN: llvm-objdump %p/Inputs/macho-universal-archive.x86_64.i386 --macho --archive-headers --arch al… 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/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/libnetfilter_conntrack/build-aux/ |
D | ar-lib | 88 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 …]
|
/external/libffi/.travis/ |
D | ar-lib | 88 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 …]
|
/external/google-breakpad/autotools/ |
D | ar-lib | 88 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 …]
|
/external/llvm-project/lld/test/wasm/ |
D | whole-archive.test | 6 Should not add symbols from the archive by default as they are not required 13 Should add symbols from the archive if --whole-archive is used 14 RUN: wasm-ld --no-gc-sections -o %t.wasm %t.o --whole-archive %t.a 20 --no-whole-archive should restore default behaviour 21 RUN: wasm-ld --no-gc-sections -o %t.wasm %t.o --whole-archive --no-whole-archive %t.a 24 --whole-archive and --no-whole-archive should affect only archives which follow them 25 RUN: wasm-ld --no-gc-sections -o %t.wasm %t.o %t.a --whole-archive --no-whole-archive 27 RUN: wasm-ld --no-gc-sections -o %t.wasm %t.o --whole-archive %t.a --no-whole-archive 30 --whole-archive should also work with thin archives 33 RUN: wasm-ld --no-gc-sections -o %t.wasm %t.o --whole-archive %tthin.a
|
/external/llvm-project/llvm/test/tools/llvm-ar/ |
D | flatten-thin-archive-directories.test | 1 # This test creates a thin archive in a directory and adds it to a thin archive 3 # the archive. 7 RUN: rm -f %t/archive.a %t/foo/archive.a 9 # These tests must be run in the same directory as %t/archive.a. cd %t is 11 RUN: cd %t && llvm-ar rcST foo/archive.a foo/a.txt 12 RUN: cd %t && llvm-ar rcST archive.a foo/archive.a 13 RUN: cd %t && llvm-ar t archive.a | FileCheck %s --match-full-lines
|
/external/ImageMagick/config/ |
D | ar-lib | 88 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 …]
|
/external/pcre/dist2/ |
D | ar-lib | 88 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 …]
|
/external/expat/conftools/ |
D | ar-lib | 88 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 …]
|
/external/python/cpython3/Lib/ |
D | zipimport.py | 97 self.archive = path 173 if pathname.startswith(self.archive + path_sep): 174 key = pathname[len(self.archive + path_sep):] 180 return _get_data(self.archive, toc_entry) 217 return _get_data(self.archive, toc_entry).decode() 253 fullpath = _bootstrap_external._path_join(self.archive, path) 352 def _read_directory(archive): argument 354 fp = _io.open_code(archive) 356 raise ZipImportError(f"can't open Zip file: {archive!r}", path=archive) 364 raise ZipImportError(f"can't read Zip file: {archive!r}", path=archive) [all …]
|
/external/llvm-project/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/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/apache-commons-compress/src/test/java/org/apache/commons/compress/archivers/zip/ |
D | ZipArchiveInputStreamTest.java | 216 final File archive = getFile("COMPRESS-380/COMPRESS-380.zip"); in readDeflate64CompressedStream() local 218 ZipArchiveInputStream zin = new ZipArchiveInputStream(new FileInputStream(archive))) { in readDeflate64CompressedStream() 229 final File archive = getFile("COMPRESS-380/COMPRESS-380-dd.zip"); in readDeflate64CompressedStreamWithDataDescriptor() local 230 try (ZipArchiveInputStream zin = new ZipArchiveInputStream(new FileInputStream(archive))) { in readDeflate64CompressedStreamWithDataDescriptor() 375 ZipArchiveInputStream archive = new ZipArchiveInputStream(in)) { in singleByteReadConsistentlyReturnsMinusOneAtEof() 376 ArchiveEntry e = archive.getNextEntry(); in singleByteReadConsistentlyReturnsMinusOneAtEof() 377 IOUtils.toByteArray(archive); in singleByteReadConsistentlyReturnsMinusOneAtEof() 378 assertEquals(-1, archive.read()); in singleByteReadConsistentlyReturnsMinusOneAtEof() 379 assertEquals(-1, archive.read()); in singleByteReadConsistentlyReturnsMinusOneAtEof() 416 ZipArchiveInputStream archive = new ZipArchiveInputStream(in)) { in multiByteReadConsistentlyReturnsMinusOneAtEof() [all …]
|