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

1 2 3 4 5 6 7 8

  /external/chromium_org/sdch/open-vcdiff/packages/
deb.sh 47 # Find the tar archive built by "make dist"
48 archive="${PACKAGE}-${VERSION}"
50 if [ -z "${archive}" ]; then
66 ln -s "${topdir}/${archive}.tar.gz" "${LIB}${archive}.orig.tar.gz"
68 ln -s "${topdir}/${archive}.tar.gz" "${LIB}${archive_with_underscore}.orig.tar.gz"
69 tar zfx "${LIB}${archive}.orig.tar.gz"
70 [ -n "${LIB}" ] && mv "${archive}" "${LIB}${archive}"
71 cd "${LIB}${archive}"
    [all...]
rpm.sh 30 archive=../$fullname.tar.gz
46 if [ \! -r "$archive" ]
48 echo "Cannot find $archive. Run \"make dist\" first." 1>&2
62 cp "$archive" "$RPM_SOURCE_DIR"
  /external/chromium_org/third_party/tcmalloc/vendor/packages/
deb.sh 33 # Find the tar archive built by "make dist"
34 archive="${PACKAGE}-${VERSION}"
36 if [ -z "${archive}" ]; then
52 ln -s "${topdir}/${archive}.tar.gz" "${LIB}${archive}.orig.tar.gz"
54 ln -s "${topdir}/${archive}.tar.gz" "${LIB}${archive_with_underscore}.orig.tar.gz"
55 tar zfx "${LIB}${archive}.orig.tar.gz"
56 [ -n "${LIB}" ] && mv "${archive}" "${LIB}${archive}"
57 cd "${LIB}${archive}"
    [all...]
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/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/chromium_org/third_party/WebKit/Source/platform/mhtml/
ArchiveResourceCollection.cpp 46 void ArchiveResourceCollection::addAllResources(MHTMLArchive* archive)
48 ASSERT(archive);
49 if (!archive)
52 const MHTMLArchive::SubArchiveResources& subresources = archive->subresources();
56 const MHTMLArchive::SubFrameArchives& subframes = archive->subframeArchives();
58 RefPtrWillBeRawPtr<MHTMLArchive> archive = *iterator; local
59 ASSERT(archive->mainResource());
61 const String& frameName = archive->mainResource()->frameName();
63 m_subframes.set(frameName, archive.get());
66 m_subframes.set(archive->mainResource()->url().string(), archive.get())
94 RefPtrWillBeRawPtr<MHTMLArchive> archive = m_subframes.take(frameName); local
    [all...]
  /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);
tcuApp.hpp 37 class Archive;
66 App (Platform& platform, Archive& archive, TestLog& log, const CommandLine& cmdLine);
  /external/chromium_org/chrome/installer/util/
lzma_util_unittest.cc 36 base::FilePath archive = data_dir_.AppendASCII("archive1.7z"); local
38 EXPECT_EQ(lzma_util.OpenArchive(archive.value()), NO_ERROR);
40 // We allow opening another archive (which will automatically close the first
41 // archive).
42 archive = data_dir_.AppendASCII("archive2.7z");
43 EXPECT_EQ(lzma_util.OpenArchive(archive.value()), NO_ERROR);
45 // Explicitly close and open the first archive again.
47 archive = data_dir_.AppendASCII("archive1.7z");
48 EXPECT_EQ(lzma_util.OpenArchive(archive.value()), NO_ERROR);
50 // Make sure non-existent archive returns error
63 base::FilePath archive = data_dir_.AppendASCII("archive1.7z"); local
104 base::FilePath archive = data_dir_.AppendASCII("archive1.7z"); local
    [all...]
  /external/elfutils/0.153/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_org/chrome/installer/linux/sysroot_scripts/
sysroot-creator-trusty.sh 11 APT_REPO=http://archive.ubuntu.com/ubuntu
14 KEYRING_FILE=/usr/share/keyrings/ubuntu-archive-keyring.gpg
sysroot-creator-wheezy.sh 11 KEYRING_FILE=/usr/share/keyrings/debian-archive-keyring.gpg
  /external/chromium_org/native_client_sdk/src/build_tools/sdk_tools/command/
info.py 26 for archive in bundle.GetArchives():
27 print ' Archive:'
28 if archive:
29 for archive_key in sorted(archive.iterkeys()):
30 print ' %s: %s' % (archive_key, archive[archive_key])
update.py 61 def VerifyDownload(self, filename, archive):
63 online archive.
72 if size != archive.size:
74 archive.size, filename))
79 if sha1_hash.hexdigest() != archive.GetChecksum():
85 """Determine number of bytes currently be in local archive cache."""
96 This is done my deleting the oldest archive files until the
106 logging.info('Clearing %d bytes in archive cache' % clean_bytes)
176 for i, archive in enumerate(archives):
177 archive_path = os.path.join(self.archive_cache, archive)
    [all...]
  /external/chromium_org/tools/memory_inspector/memory_inspector/data/
file_storage_unittest.py 49 archive = self._storage.OpenArchive('snapshots', create=True)
50 t1 = archive.StartNewSnapshot()
51 archive.StoreMemMaps(memory_map.Map())
53 t2 = archive.StartNewSnapshot()
54 archive.StoreMemMaps(memory_map.Map())
55 archive.StoreNativeHeap(native_heap.NativeHeap())
56 self.assertIn(t1, archive.ListSnapshots())
57 self.assertIn(t2, archive.ListSnapshots())
58 self.assertTrue(archive.HasMemMaps(t1))
59 self.assertFalse(archive.HasNativeHeap(t1)
    [all...]
  /external/deqp/framework/platform/
tcuMain.cpp 47 tcu::DirArchive archive (".");
50 de::UniquePtr<tcu::App> app (new tcu::App(*platform, archive, log, cmdLine));
  /dalvik/libdex/
ZipArchive.h 29 * Open a Zip archive.
51 * Close archive, releasing resources associated with it.
56 DEX_INLINE void dexZipCloseArchive(ZipArchiveHandle archive) {
57 CloseArchive(archive);
61 * Return the archive's file descriptor.
68 * Find an entry in the Zip archive, by name. Returns NULL if the entry
CmdUtils.cpp 34 * Extract "classes.dex" from archive file.
43 ZipArchiveHandle archive; local
48 if (dexZipOpenArchive(zipFileName, &archive) != 0) {
50 fprintf(stderr, "Unable to open '%s' as zip archive\n",
67 if (dexZipFindEntry(archive, kFileToExtract, &entry) != 0) {
76 if (dexZipExtractEntryToFile(archive, &entry, fd) != 0) {
88 dexZipCloseArchive(archive);
  /external/chromium_org/tools/export_tarball/
export_v8_tarball.py 114 archive = MyTarFile.open(output_fullname, 'w:bz2')
115 archive.set_remove_nonessential_files(False)
117 archive.add(v8_directory, arcname=output_basename)
119 archive.close()
124 archive = MyTarFile.open(output_fullname, 'w:bz2')
125 archive.set_remove_nonessential_files(True)
127 archive.add(v8_directory, arcname=output_basename)
129 archive.close()
  /external/openssl/crypto/des/times/
hpux.cc 1 HPUX 10 - 9000/887 - cc -D_HPUX_SOURCE -Aa +ESlit +O2 -Wl,-a,archive
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/system/
workspace_unittest.py 57 archive = OutputCapture().assert_outputs(self, workspace.create_zip, ["/zip/path", "/source/path", MockZipFile], expected_logs=expected_logs)
58 self.assertEqual(archive.filename, "/zip/path")
71 archive = OutputCapture().assert_outputs(self, workspace.create_zip, ["/zip/path", "/source/path", MockZipFile], expected_logs=expected_logs)
72 self.assertIsNone(archive)
  /external/chromium_org/tools/usb_gadget/
package.py 28 archive = zipfile.PyZipFile(buf, 'w')
30 archive.writepy(directory)
33 archive.write(f, os.path.basename(f))
34 archive.close()
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
perf-archive.sh 2 # perf archive
21 BUILDIDS=$(mktemp /tmp/perf-archive-buildids.XXXXXX)
26 echo "perf archive: no build-ids found"
31 MANIFEST=$(mktemp /tmp/perf-archive-manifest.XXXXXX)

Completed in 1351 milliseconds

1 2 3 4 5 6 7 8