HomeSort by relevance Sort by last modified time
    Searched full:archive (Results 176 - 200 of 3263) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/glacier/
vault.py 74 Adds an archive to a vault. For archives greater than 100MB the
81 :param description: An optional description for the archive.
84 :return: The archive id of the newly created archive
92 Adds an archive to a vault in a single operation. It's recommended for
99 :param description: A description for the archive.
102 :return: The archive id of the newly created archive
115 Create a new archive and begin a multi-part upload to it.
116 Returns a file-like object to which the data for the archive
    [all...]
layer1.py 173 This means that if you add or remove an archive from a vault,
246 archive IDs you use to delete archives using `Delete Archive
247 (DELETE archive)`_.
317 that was initiated for an archive retrieval is completed
399 fails. For example, suppose you start an archive retrieval job
400 to download an archive. After the job completes, you start to
401 download the archive but encounter a network error. In this
402 scenario, you can retry and download the archive while the job
406 To retrieve an archive or retrieve a vault inventory fro
    [all...]
  /frameworks/support/documents-archive/src/android/support/provider/
DocumentArchive.java 146 // It's rare, but can happen in a valid ZIP archive. In such case create a
164 * documents within the archive passed as a local file.
167 * @param File Local file containing the archive.
168 * @param documentId ID of the archive document.
169 * @param idDelimiter Delimiter for constructing IDs of documents within the archive.
171 * @param Uri notificationUri Uri for notifying that the archive file has changed.
184 * documents within the archive passed as a file descriptor.
192 * @param descriptor File descriptor for the archive's contents.
193 * @param documentId ID of the archive document.
194 * @param idDelimiter Delimiter for constructing IDs of documents within the archive
    [all...]
DocumentArchiveHelper.java 84 Log.e(TAG, "Failed to close an archive as it no longer exists.");
107 * Lists child documents of an archive or a directory within an
108 * archive. Must be called only for archives with supported mime type,
126 * Returns a MIME type of a document within an archive.
141 * Returns true if a document within an archive is a child or any descendant of the archive
142 * document or another document within the archive.
159 * Returns metadata of a document within an archive.
175 * Opens a file within an archive.
192 * Opens a thumbnail of a file within an archive
    [all...]
  /external/elfutils/tests/
run-test-archive64.sh 20 # The test archive was produced on an s390x machine using the
31 Index of archive 'testarchive64.a' has 7 entries:
32 Archive member 'aaa.o' contains:
34 Archive member 'bbb.o' contains:
37 Archive member 'ccc.o' contains:
arsymtest.c 39 /* Open the archive. */
66 /* If it is no archive punt. */
69 printf ("`%s' is no archive\n", argv[1]);
73 /* Now get the index of the archive. */
77 printf ("Cannot get archive index: %s\n", elf_errmsg (-1));
100 printf ("Cannot create ELF descriptor for archive member: %s\n",
108 printf ("Cannot get archive header for element `%s': %s\n",
  /frameworks/base/tools/aapt2/io/
File.h 31 * a ZIP archive.
40 * simply mmap the contents. If this file represents a compressed file in a ZIP archive,
50 * a ZIP archive from the path to the containing ZIP archive.
65 * simply be the filesystem, or a ZIP archive.
  /external/boringssl/src/util/bot/
extract.py 66 parser = optparse.OptionParser(usage='Usage: %prog ARCHIVE OUTPUT')
68 help='Do not remove a prefix from paths in the archive.')
75 archive, output = args
77 if not os.path.exists(archive):
81 if archive.endswith('.zip'):
82 entries = IterateZip(archive)
83 elif archive.endswith('.tar.gz'):
84 entries = IterateTar(archive)
86 raise ValueError(archive)
93 print "Extracting %s to %s" % (archive, output
    [all...]
  /external/llvm/test/Object/
size-trivial-macho.test 7 RUN: llvm-size %p/Inputs/macho-archive-x86_64.a \
9 RUN: llvm-size -format darwin %p/Inputs/macho-archive-x86_64.a \
17 RUN: llvm-size -arch all %p/Inputs/macho-universal-archive.x86_64.i386 \
19 RUN: llvm-size -arch x86_64 %p/Inputs/macho-universal-archive.x86_64.i386 \
43 AR: 70 0 0 32 102 66 {{.*}}/macho-archive-x86_64.a(foo.o)
44 AR: 0 4 0 0 4 4 {{.*}}/macho-archive-x86_64.a(bar.o)
46 mAR: {{.*}}/macho-archive-x86_64.a(foo.o):
53 mAR: {{.*}}/macho-archive-x86_64.a(bar.o):
85 uAR: 136 0 0 32 168 a8 {{.*}}/macho-universal-archive.x86_64.i386(hello.o) (for architecture x86_64)
86 uAR: 5 4 0 0 9 9 {{.*}}/macho-universal-archive.x86_64.i386(foo.o) (for architecture i386
    [all...]
  /bootable/recovery/minzip/
Zip.h 4 * Simple Zip archive support.
25 * One entry in the Zip archive. Treat this as opaque -- use accessors below.
46 * One Zip archive. Treat as opaque.
66 * Open a Zip archive.
74 * Close archive, releasing resources associated with it.
83 * Find an entry in the Zip archive, by name.
143 * children of targetDir; e.g., if the archive contains the entries
  /prebuilts/tools/common/m2/repository/org/eclipse/jetty/jetty-parent/20/
jetty-parent-20.pom 18 <archive>http://dev.eclipse.org/mhonarc/lists/jetty-dev/maillist.html</archive>
24 <archive>http://dev.eclipse.org/mhonarc/lists/jetty-commit/maillist.html</archive>
30 <archive>http://dev.eclipse.org/mhonarc/lists/jetty-users/maillist.html</archive>
36 <archive>http://dev.eclipse.org/mhonarc/lists/jetty-announce/maillist.html</archive>
44 <archive>http://archive.jetty.codehaus.org/user</archive
    [all...]
  /external/toybox/toys/posix/
cpio.c 12 * and initramfs started heavily using this archive format.
28 copy files into and out of a "newc" format cpio archive
30 -F FILE use archive FILE instead of stdin/stdout
32 -i extract from archive into file system (stdin=archive)
33 -o create archive (stdin=list of files, stdout=archive)
34 -t test files (list only, stdin=archive, stdout=list of files)
43 char *archive;
58 str[len]=0; // redundant, in case archive is ba
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-plugins/16/
maven-plugins-16.pom 46 <archive>http://mail-archives.apache.org/mod_mbox/maven-users</archive>
48 <otherArchive>http://www.mail-archive.com/users@maven.apache.org/</otherArchive>
58 <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
60 <otherArchive>http://www.mail-archive.com/dev@maven.apache.org/</otherArchive>
69 <archive>http://mail-archives.apache.org/mod_mbox/maven-issues/</archive>
71 <otherArchive>http://www.mail-archive.com/issues@maven.apache.org</otherArchive>
80 <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-plugins/18/
maven-plugins-18.pom 46 <archive>http://mail-archives.apache.org/mod_mbox/maven-users</archive>
48 <otherArchive>http://www.mail-archive.com/users@maven.apache.org/</otherArchive>
58 <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
60 <otherArchive>http://www.mail-archive.com/dev@maven.apache.org/</otherArchive>
69 <archive>http://mail-archives.apache.org/mod_mbox/maven-issues/</archive>
71 <otherArchive>http://www.mail-archive.com/issues@maven.apache.org</otherArchive>
80 <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/apache/maven/plugins/maven-plugins/22/
maven-plugins-22.pom 46 <archive>http://mail-archives.apache.org/mod_mbox/maven-users</archive>
48 <otherArchive>http://www.mail-archive.com/users@maven.apache.org/</otherArchive>
58 <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
60 <otherArchive>http://www.mail-archive.com/dev@maven.apache.org/</otherArchive>
69 <archive>http://mail-archives.apache.org/mod_mbox/maven-issues/</archive>
71 <otherArchive>http://www.mail-archive.com/issues@maven.apache.org</otherArchive>
80 <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/maven-ant-tasks/2.1.3/
maven-ant-tasks-2.1.3.pom 45 <archive>http://mail-archives.apache.org/mod_mbox/maven-users</archive>
47 <otherArchive>http://www.mail-archive.com/users@maven.apache.org/</otherArchive>
57 <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
59 <otherArchive>http://www.mail-archive.com/dev@maven.apache.org/</otherArchive>
68 <archive>http://mail-archives.apache.org/mod_mbox/maven-issues/</archive>
70 <otherArchive>http://www.mail-archive.com/issues@maven.apache.org</otherArchive>
79 <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/plugins/maven-plugins/12/
maven-plugins-12.pom 46 <archive>http://mail-archives.apache.org/mod_mbox/maven-users</archive>
48 <otherArchive>http://www.mail-archive.com/users@maven.apache.org/</otherArchive>
58 <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
60 <otherArchive>http://www.mail-archive.com/dev@maven.apache.org/</otherArchive>
69 <archive>http://mail-archives.apache.org/mod_mbox/maven-issues/</archive>
71 <otherArchive>http://www.mail-archive.com/issues@maven.apache.org</otherArchive>
80 <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/plugins/maven-plugins/16/
maven-plugins-16.pom 46 <archive>http://mail-archives.apache.org/mod_mbox/maven-users</archive>
48 <otherArchive>http://www.mail-archive.com/users@maven.apache.org/</otherArchive>
58 <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
60 <otherArchive>http://www.mail-archive.com/dev@maven.apache.org/</otherArchive>
69 <archive>http://mail-archives.apache.org/mod_mbox/maven-issues/</archive>
71 <otherArchive>http://www.mail-archive.com/issues@maven.apache.org</otherArchive>
80 <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
    [all...]
  /prebuilts/tools/common/m2/repository/org/apache/maven/plugins/maven-plugins/22/
maven-plugins-22.pom 46 <archive>http://mail-archives.apache.org/mod_mbox/maven-users</archive>
48 <otherArchive>http://www.mail-archive.com/users@maven.apache.org/</otherArchive>
58 <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
60 <otherArchive>http://www.mail-archive.com/dev@maven.apache.org/</otherArchive>
69 <archive>http://mail-archives.apache.org/mod_mbox/maven-issues/</archive>
71 <otherArchive>http://www.mail-archive.com/issues@maven.apache.org</otherArchive>
80 <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive
    [all...]
  /external/v8/test/promises-aplus/
testcfg.py 50 TEST_URL = 'https://github.com/promises-aplus/promises-tests/archive/' + \
101 archive = os.path.join(self.root, TEST_ARCHIVE)
103 if not os.path.exists(archive):
105 utils.URLRetrieve(TEST_URL, archive)
112 with open(archive, 'rb') as f:
116 os.remove(archive)
118 archive = tarfile.open(archive, 'r:gz')
121 archive.extractall(u'\\\\?\\%s' % self.root)
123 archive.extractall(self.root
    [all...]
  /system/core/libziparchive/
zip_archive_common.h 24 // The "end of central directory" (EOCD) record. Each archive
26 // the archive. It contains archive wide information like the
27 // number of entries in the archive and the offset to the central
38 // This implementation assumes that each archive spans a single
43 // This implementation assumes that each archive spans a single
48 // This implementation assumes that each archive spans a single
66 // record in the central directory of the archive. In addition to
112 // beginning of this archive.
120 // present in the central directory of the archive. It is an error fo
    [all...]
  /external/deqp/framework/common/
tcuResource.hpp 30 // \todo [2010-07-31 pyry] Move Archive and File* to separate files
42 * Resource objects are requested from Archive object provided by Platform.
65 * \brief Abstract resource archive
67 class Archive
70 virtual ~Archive (void) {}
85 Archive () {}
89 * \brief Directory-based archive implementation
91 class DirArchive : public Archive
100 DirArchive (const DirArchive& other) : Archive(), m_path(other.m_path) {}
126 class ResourcePrefix : public Archive
    [all...]
  /external/lzma/DOC/
installer.txt 21 7zr a archive.7z files
26 Such module extracts archive to temp folder and then runs specified program and removes
27 temp files after program finishing. Self-extract archive for installers must be created
30 self-extract archive:
32 copy /b 7zSD.sfx + config.txt + archive.7z archive.exe
35 uncompressed before including to 7z archive.
63 Use RunProgram, if you want to run some program from .7z archive.
64 Use ExecuteFile, if you want to open some document from .7z archive or
117 - It decompresses solid 7z blocks (it can be whole 7z archive) to RAM.
    [all...]
  /frameworks/compile/mclinker/lib/Script/
InputCmd.cpp 11 #include "mcld/LD/Archive.h"
137 // In the system with shared object support, we can find both archive
140 // with --static, we must search an archive.
141 path = script.directories().find(token->name(), Input::Archive);
143 // otherwise, with --Bdynamic, we can find either an archive or a
149 // archive
150 path = script.directories().find(token->name(), Input::Archive);
196 (*input)->setType(Input::Archive);
200 Archive archive(**input, m_Builder)
    [all...]
  /toolchain/binutils/binutils-2.25/binutils/
arsup.c 1 /* arsup.c - Archive support for MRI compatibility
71 the archive. Ditto mapping over each file each time -- we
89 fprintf (stderr, _("No entry %s in archive.\n"), ptr->name);
164 _("%s: Can't open output archive %s\n"),
181 fprintf (stderr,_("%s: Can't open input archive %s\n"),
190 _("%s: file %s is not an archive\n"),
230 fprintf (stderr, _("%s: no output archive specified yet\n"), program_name);
250 fprintf (stderr, _("%s: no open output archive\n"), program_name);
288 fprintf (stderr, _("%s: no open output archive\n"), program_name);
295 /* Find this name in the archive. *
    [all...]

Completed in 3443 milliseconds

1 2 3 4 5 6 78 91011>>