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

1 2 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/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/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
  /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}"
rpm.sh 16 archive=../$fullname.tar.gz
32 if [ \! -r "$archive" ]
34 echo "Cannot find $archive. Run \"make dist\" first." 1>&2
48 cp "$archive" "$RPM_SOURCE_DIR"
  /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/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/chromium-trace/catapult/telemetry/third_party/webpagereplay/
httparchive_test.py 50 self.archive = httparchive.HttpArchive()
51 self.archive[self.REQUEST] = self.RESPONSE
56 self.archive[request] = self.RESPONSE
62 archive = httparchive.HttpArchive()
63 self.assertEqual(len(archive), 0)
127 archive = httparchive.HttpArchive()
129 archive[request2] = self.RESPONSE
130 archive[request3] = self.RESPONSE
132 return archive, request1, request2, request3, request4
135 archive, request1, request2, request3, request4 =
    [all...]
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-undefined/
entry-1.d 1 #name: --entry foo archive
entry-2.d 1 #name: --entry foo -u foo archive
entry-3.d 1 #name: -shared --entry foo archive
  /bootable/recovery/otafault/
config.cpp 31 static ZipArchive* archive; variable
39 archive = za;
44 // archive will be NULL if we used an entry point other
46 if (archive == NULL) {
53 const ZipEntry* entry = mzFindZipEntry(archive, type_path.c_str());
66 const ZipEntry* entry = mzFindZipEntry(archive, type_path.c_str());
67 mzReadZipEntry(archive, entry, &fname[0], OTAIO_MAX_FNAME_SIZE);
  /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/pcre/dist/
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/chromium-trace/catapult/dependency_manager/dependency_manager/
dependency_manager_util.py 27 def VerifySafeArchive(archive):
33 for member in archive.namelist():
36 'Archive %s contains a bad member: %s.' % (archive.filename, member))
47 def SetUnzippedDirPermissions(archive, unzipped_dir):
48 """Set the file permissions in an unzipped archive.
50 Designed to be called right after extractall() was called on |archive|.
54 archive: A zipfile.ZipFile object opened for reading.
56 of |archive|.
61 for zip_info in archive.infolist()
    [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...]
  /external/autotest/client/deps/webgl_perf/files/
update-tarball 7 wget http://hg.mozilla.org/users/bjacob_mozilla.com/webgl-perf-tests/archive/tip.tar.bz2
  /external/deqp/framework/platform/
tcuMain.cpp 47 tcu::DirArchive archive (".");
50 de::UniquePtr<tcu::App> app (new tcu::App(*platform, archive, log, cmdLine));
  /frameworks/base/packages/ExternalStorageProvider/
Android.mk 8 LOCAL_STATIC_JAVA_LIBRARIES := android-support-documents-archive
  /prebuilts/go/darwin-x86/src/archive/tar/
example_test.go 8 "archive/tar"
17 // Create a buffer to write our archive to.
20 // Create a new tar archive.
23 // Add some files to the archive.
27 {"readme.txt", "This archive contains some text files."},
49 // Open the tar archive for reading.
53 // Iterate through the files in the archive.
57 // end of tar archive
72 // This archive contains some text files.
  /prebuilts/go/linux-x86/src/archive/tar/
example_test.go 8 "archive/tar"
17 // Create a buffer to write our archive to.
20 // Create a new tar archive.
23 // Add some files to the archive.
27 {"readme.txt", "This archive contains some text files."},
49 // Open the tar archive for reading.
53 // Iterate through the files in the archive.
57 // end of tar archive
72 // This archive contains some text files.
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-misc/
defsym1.d 6 # Check that --defsym works on archive.

Completed in 1752 milliseconds

1 2 3 4 5 6 7 8 91011>>