HomeSort by relevance Sort by last modified time
    Searched refs:archive (Results 1 - 25 of 863) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/archive-patcher/
Android.mk 18 archive-patcher_shared_src_files := $(call all-java-files-under,shared/src/main/java)
19 archive-patcher_applier_src_files := $(call all-java-files-under,applier/src/main/java)
22 LOCAL_MODULE := archive-patcher
23 LOCAL_SRC_FILES := $(archive-patcher_shared_src_files) $(archive-patcher_applier_src_files)
24 # archive-patcher should be compatible with all versions of Android
30 LOCAL_SRC_FILES := $(archive-patcher_shared_src_files) $(archive-patcher_applier_src_files)
31 LOCAL_MODULE := archive-patcher-hostdex
32 # archive-patcher should be compatible with all versions of Androi
    [all...]
  /frameworks/support/jetifier/jetifier/processor/src/main/kotlin/com/android/tools/build/jetifier/processor/archive/
ArchiveItemVisitor.kt 17 package com.android.tools.build.jetifier.processor.archive
24 fun visit(archive: Archive)
  /toolchain/binutils/binutils-2.27/binutils/
bfdtest1.c 34 bfd *archive; local
38 die ("usage: bfdtest1 <archive>");
40 archive = bfd_openr (argv[1], NULL);
41 if (archive == NULL)
42 die ("no such archive");
44 if (!bfd_check_format (archive, bfd_archive))
46 bfd_close (archive);
50 for (last = bfd_openr_next_archived_file (archive, NULL);
54 next = bfd_openr_next_archived_file (archive, last);
58 for (last = bfd_openr_next_archived_file (archive, NULL)
    [all...]
  /external/cmockery/cmockery_0_1_2/packages/
deb.sh 32 # Find the tar archive built by "make dist"
33 archive="$(basename "$(ls -1 ${topdir}/$PACKAGE*.tar.gz | tail -n 1)" .tar.gz)"
34 if [ -z "${archive}" ]; then
50 ln -s "${topdir}/${archive}.tar.gz" "${LIB}${archive}.orig.tar.gz"
51 tar zfx "${LIB}${archive}.orig.tar.gz"
52 [ -n "${LIB}" ] && mv "${archive}" "${LIB}${archive}"
53 cd "${LIB}${archive}"
  /external/elfutils/tests/
run-arextract.sh 23 archive=${abs_top_builddir}/libelf/libelf.a
24 if test -f $archive; then
30 testrun ${abs_builddir}/arextract $archive `basename $f` arextract.test || exit 1
  /external/deqp/framework/common/
tcuImageIO.hpp 31 class Archive;
39 void loadImage (TextureLevel& dst, const tcu::Archive& archive, const char* fileName);
41 void loadPNG (TextureLevel& dst, const tcu::Archive& archive, const char* fileName);
44 void loadPKM (CompressedTexture& dst, const tcu::Archive& archive, const char* fileName);
  /build/kati/testcase/
multi_rule_order_only.mk 19 echo archive $@
22 echo archive $@
  /external/swiftshader/third_party/LLVM/tools/llvm-ld/
Makefile 13 LINK_COMPONENTS = ipo scalaropts linker archive bitwriter
  /external/swiftshader/third_party/LLVM/tools/llvm-nm/
Makefile 12 LINK_COMPONENTS = archive bitreader object
  /external/swiftshader/third_party/LLVM/tools/llvm-ranlib/
Makefile 12 LINK_COMPONENTS = archive
  /test/vts/utils/python/archive/
archive_parser_test.py 21 from vts.utils.python.archive import archive_parser
25 """Unit tests for archive_parser of vts.utils.python.archive.
29 """Tests that archive is read when header is correct.
31 Parses archive content containing only the signature.
34 archive = archive_parser.Archive(archive_parser.Archive.GLOBAL_SIG)
35 archive.Parse()
37 self.fail('Archive reader read improperly.')
42 Parses archive content lacking the correct signature
    [all...]
  /external/elfutils/src/
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" || exi
    [all...]
  /dalvik/dx/src/com/android/multidex/
ArchivePathElement.java 36 private final ZipFile archive; field in class:ArchivePathElement
38 public ArchivePathElement(ZipFile archive) {
39 this.archive = archive;
44 ZipEntry entry = archive.getEntry(path);
50 return archive.getInputStream(entry);
56 archive.close();
66 Enumeration<? extends ZipEntry> delegate = archive.entries();
  /external/pdfium/core/fpdfapi/parser/
cpdf_null.cpp 21 bool CPDF_Null::WriteTo(IFX_ArchiveStream* archive) const {
22 return archive->WriteString(" null");
cpdf_boolean.cpp 49 bool CPDF_Boolean::WriteTo(IFX_ArchiveStream* archive) const {
50 return archive->WriteString(" ") &&
51 archive->WriteString(GetString().AsStringView());
cpdf_null.h 21 bool WriteTo(IFX_ArchiveStream* archive) const override;
cpdf_name.cpp 53 bool CPDF_Name::WriteTo(IFX_ArchiveStream* archive) const {
54 return archive->WriteString("/") &&
55 archive->WriteString(PDF_NameEncode(GetString()).AsStringView());
  /toolchain/binutils/binutils-2.27/ld/testsuite/ld-undefined/
entry-1.d 1 #name: --entry foo archive
  /bootable/recovery/otafault/
config.cpp 29 static ZipArchiveHandle archive; variable
38 archive = za;
44 // archive will be NULL if we used an entry point other
46 if (archive == nullptr || is_retry) {
55 int status = FindEntry(archive, zip_type_path, &entry);
70 if (FindEntry(archive, zip_type_path, &entry) != 0) {
73 ExtractToMemory(archive, &entry, reinterpret_cast<uint8_t*>(&fname[0]), OTAIO_MAX_FNAME_SIZE);
  /frameworks/support/jetifier/jetifier/processor/src/main/kotlin/com/android/tools/build/jetifier/processor/transform/pom/
PomScanner.kt 20 import com.android.tools.build.jetifier.processor.archive.Archive
21 import com.android.tools.build.jetifier.processor.archive.ArchiveFile
22 import com.android.tools.build.jetifier.processor.archive.ArchiveItemVisitor
26 * Helper to scan [Archive]s to find their POM files.
43 * Scans the given [archive] for a POM file
47 fun scanArchiveForPomFile(archive: Archive) {
49 archive.accept(session)
67 override fun visit(archive: Archive)
    [all...]
  /external/ImageMagick/config/
ar-lib 79 # func_at_file at_file operation archive
80 # Iterate over all members in AT_FILE performing OPERATION on ARCHIVE
88 archive=$3
95 $AR -NOLOGO $operation:"$member" "$archive" || exit $?
105 Usage: $me [--help] [--version] PROGRAM ACTION ARCHIVE [MEMBER...]
118 func_error "you must specify a program, an action and an archive"
126 func_error "you must specify a program, an action and an archive"
148 archive=$file
194 func_error "archive not found"
200 func_at_file "${1#@}" -REMOVE "$archive"
    [all...]
  /external/libnetfilter_conntrack/build-aux/
ar-lib 79 # func_at_file at_file operation archive
80 # Iterate over all members in AT_FILE performing OPERATION on ARCHIVE
88 archive=$3
95 $AR -NOLOGO $operation:"$member" "$archive" || exit $?
105 Usage: $me [--help] [--version] PROGRAM ACTION ARCHIVE [MEMBER...]
118 func_error "you must specify a program, an action and an archive"
126 func_error "you must specify a program, an action and an archive"
148 archive=$file
194 func_error "archive not found"
200 func_at_file "${1#@}" -REMOVE "$archive"
    [all...]
  /external/pcre/dist2/
ar-lib 79 # func_at_file at_file operation archive
80 # Iterate over all members in AT_FILE performing OPERATION on ARCHIVE
88 archive=$3
95 $AR -NOLOGO $operation:"$member" "$archive" || exit $?
105 Usage: $me [--help] [--version] PROGRAM ACTION ARCHIVE [MEMBER...]
118 func_error "you must specify a program, an action and an archive"
126 func_error "you must specify a program, an action and an archive"
148 archive=$file
194 func_error "archive not found"
200 func_at_file "${1#@}" -REMOVE "$archive"
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/pack/
doc.go 13 Pack applies the operation to the archive, using the names as arguments to the operation.
17 c append files (from the file system) to a new archive
18 p print files from the archive
19 r append files (from the file system) to the archive
20 t list files from the archive
21 x extract files from the archive
23 The archive argument to the c command must be non-existent or a
24 valid archive file, which will be cleared before adding new entries. It
25 is an error if the file exists but is not an archive.
28 causes the operation to apply to all files in the archive
    [all...]
  /prebuilts/go/linux-x86/src/cmd/pack/
doc.go 13 Pack applies the operation to the archive, using the names as arguments to the operation.
17 c append files (from the file system) to a new archive
18 p print files from the archive
19 r append files (from the file system) to the archive
20 t list files from the archive
21 x extract files from the archive
23 The archive argument to the c command must be non-existent or a
24 valid archive file, which will be cleared before adding new entries. It
25 is an error if the file exists but is not an archive.
28 causes the operation to apply to all files in the archive
    [all...]

Completed in 365 milliseconds

1 2 3 4 5 6 7 8 91011>>