HomeSort by relevance Sort by last modified time
    Searched refs:archive (Results 51 - 75 of 427) sorted by null

1 23 4 5 6 7 8 91011>>

  /prebuilts/tools/common/m2/repository/org/apache/maven/plugins/maven-assembly-plugin/2.2-beta-5/
maven-assembly-plugin-2.2-beta-5.jar 
  /external/lzma/CPP/7zip/UI/Console/
List.cpp 114 , "Is not archive type"
127 static const char *kListing = "Listing archive: ";
336 HRESULT AddMainProps(IInArchive *archive);
413 HRESULT CFieldPrinter::AddMainProps(IInArchive *archive)
416 RINOK(archive->GetNumberOfProperties(&numProps));
422 RINOK(archive->GetPropertyInfo(i, &name, &propID, &vt));
600 RINOK(Arc->Archive->GetProperty(index, f.PropID, &prop));
733 static HRESULT GetUInt64Value(IInArchive *archive, UInt32 index, PROPID propID, CListUInt64Def &value)
738 RINOK(archive->GetProperty(index, propID, &prop));
743 static HRESULT GetItemMTime(IInArchive *archive, UInt32 index, CListFileTimeDef &t)
1031 IInArchive *archive = arc.Archive; local
1083 IInArchive *archive = arc.Archive; local
    [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:
  /external/iptables/
release.sh 17 git archive --prefix="iptables-$VERSION/" "v$VERSION" | tar -xC "$TMPDIR/"
  /ndk/tests/device/whole-static-libs/jni/
Android.mk 9 # --whole-archive is used. However, it won't do it for shared libraries, so
  /external/deqp/framework/common/
tcuImageIO.cpp 52 * \param archive Resource archive
55 void loadImage (TextureLevel& dst, const tcu::Archive& archive, const char* fileName)
60 loadPNG(dst, archive, fileName);
79 * \param archive Resource archive
82 void loadPNG (TextureLevel& dst, const tcu::Archive& archive, const char* fileName)
84 de::UniquePtr<Resource> resource(archive.getResource(fileName))
    [all...]
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...]
  /system/core/libziparchive/
zip_archive_stream_entry.cc 17 // Read-only stream access to Zip Archive entries.
39 ZipArchive* archive = reinterpret_cast<ZipArchive*>(handle_); local
41 if (lseek64(archive->fd, data_offset, SEEK_SET) != data_offset) {
87 ZipArchive* archive = reinterpret_cast<ZipArchive*>(handle_); local
89 if (!android::base::ReadFully(archive->fd, data_.data(), bytes)) {
91 ALOGE("Error reading from archive fd: %s", strerror(errno));
207 ZipArchive* archive = reinterpret_cast<ZipArchive*>(handle_); local
209 if (!android::base::ReadFully(archive->fd, in_.data(), bytes)) {
211 ALOGE("Error reading from archive fd: %s", strerror(errno));
  /external/lzma/CPP/7zip/UI/Common/
OpenArchive.cpp 47 1) Open with main type. Archive handler is allowed to use archive start finder.
59 - archive is not "Self Exe" - return OK with Warning, that there is tail
60 - archive is "Self Exe"
62 - tail can be open as archive - shows that archive and stub size property.
63 - tail can't be open as archive - shows Parser ???
66 If some open type is OK and physical archive size is uequal or larger
67 than file size, then return that archive with warning that can not be open as [extension type].
71 - if there is full archive or tail archive and unknown block or "Self Exe"
1580 CMyComPtr<IInArchive> archive; local
1840 CMyComPtr<IInArchive> archive; local
2303 CMyComPtr<IInArchive> archive; local
    [all...]
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/glacier/
utils.py 38 states that the maximum archive size is 10,000 * 4 GB, which means
50 If the file size is greater than the maximum allowed archive
55 # archive, as there is a limit of 10,000 parts in a multipart upload.
56 # This puts the maximum allowed archive size with the default part size
166 def __init__(self, archive):
167 self._archive = archive
168 self._starting_offset = archive.tell()
  /external/lzma/CPP/7zip/UI/Client7z/
Client7z.cpp 23 #include "../../Archive/IArchive.h"
49 "Usage: Client7z.exe [a | l | x ] archive.7z [fileName ...]\n"
51 " Client7z.exe a archive.7z f1.txt f2.txt : compress two files to archive.7z\n"
52 " Client7z.exe l archive.7z : List contents of archive.7z\n"
53 " Client7z.exe x archive.7z : eXtract files from archive.7z\n";
102 static HRESULT IsArchiveItemProp(IInArchive *archive, UInt32 index, PROPID propID, bool &result)
105 RINOK(archive->GetProperty(index, propID, &prop));
847 CMyComPtr<IInArchive> archive; local
    [all...]
  /frameworks/compile/mclinker/lib/LD/
GroupReader.cpp 11 #include "mcld/LD/Archive.h"
46 // record the archive files in this sub-tree
57 (*input)->type() == Input::Archive ||
74 // is an archive
76 (*input)->setType(Input::Archive);
77 // record the Archive used by each archive node
78 Archive* ar = new Archive(**input, pBuilder);
81 // read archive
    [all...]
  /external/deqp/framework/opengl/
gluTexture.hpp 83 static Texture2D* create (const RenderContext& context, const ContextInfo& contextInfo, const tcu::Archive& archive, int numLevels, const std::vector<std::string>& filenames);
84 static Texture2D* create (const RenderContext& context, const ContextInfo& contextInfo, const tcu::Archive& archive, int numLevels, const char* const* filenames);
85 static Texture2D* create (const RenderContext& context, const ContextInfo& contextInfo, const tcu::Archive& archive, const char* filename) { return create(context, contextInfo, archive, 1, &filename); }
123 static TextureCube* create (const RenderContext& context, const ContextInfo& contextInfo, const tcu::Archive& archive, int numLevels, const std::vector<std::string>& filenames);
124 static TextureCube* create (const RenderContext& context, const ContextInfo& contextInfo, const tcu::Archive& archive, int numLevels, const char* const* filenames)
    [all...]
  /frameworks/multidex/library/src/android/support/multidex/
MultiDexExtractor.java 136 private static boolean isModified(Context context, File archive, long currentCrc) {
138 return (prefs.getLong(KEY_TIME_STAMP, NO_VALUE) != getTimeStamp(archive))
142 private static long getTimeStamp(File archive) {
143 long timeStamp = archive.lastModified();
152 private static long getZipCrc(File archive) throws IOException {
153 long computedValue = ZipUtil.getZipCrc(archive);
  /toolchain/binutils/binutils-2.25/bfd/doc/
Makefile.am 22 DOCFILES = aoutx.texi archive.texi archures.texi \
31 PROTOS = archive.p archures.p bfd.p \
43 SRCDOC = $(srcdir)/../aoutx.h $(srcdir)/../archive.c \
55 SRCPROT = $(srcdir)/../archive.c $(srcdir)/../archures.c \
103 archive.texi: archive.stamp ; @true
104 archive.stamp: $(srcdir)/../archive.c $(srcdir)/doc.str $(MKDOC)
105 ./$(MKDOC) -f $(srcdir)/doc.str < $< >archive.tmp
106 $(SHELL) $(srcdir)/../../move-if-change archive.tmp archive.tex
    [all...]
  /external/libweave/
Makefile 82 $(CXX) -shared -Wl,-soname=libweave.so -o $@ -Wl,--whole-archive $^ -Wl,--no-whole-archive -lcrypto -lexpat -lpthread -lrt
  /external/nanopb-c/tools/
make_linux_package.sh 16 git archive HEAD | tar x -C $DEST
  /toolchain/binutils/binutils-2.25/bfd/
archive.c 1 /* BFD back-end for archive files (libraries).
22 @setfilename archive-info
27 An archive (or library) is just another BFD. It has a symbol
30 The big difference between an archive BFD and an ordinary BFD
31 is that the archive doesn't have sections. Instead it has a
34 archive opened for reading will all be opened for reading. You
35 may put either input or output BFDs into an archive opened for
36 output; they will be handled correctly when the archive is closed.
39 the contents of an archive opened for input. You don't
40 have to read the entire archive if you don't wan
    [all...]
  /external/elfutils/libasm/
Makefile.am 65 $(AM_V_CCLD)$(LINK) -shared -o $@ -Wl,--whole-archive,$<,--no-whole-archive \
  /external/elfutils/libdwfl/
offline.c 103 /* Report one module for an ELF file, or many for an archive.
232 /* Advance the archive-reading offset for the next iteration. */
236 /* Report each member of the archive as its own module. */
239 Elf *archive,
244 Elf *member = elf_begin (fd, ELF_C_READ_MMAP_PRIVATE, archive);
245 if (unlikely (member == NULL)) /* Empty archive. */
253 member = elf_begin (fd, ELF_C_READ_MMAP_PRIVATE, archive);
255 /* We can drop the archive Elf handle even if we're still using members
260 && elf_end (archive) == 0)
  /external/lzma/CPP/7zip/Archive/7z/
7zUpdate.h 109 COutArchive &archive,
  /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...]
  /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...]
  /frameworks/support/documents-archive/
Android.mk 21 # android-support-documents-archive \
28 LOCAL_MODULE := android-support-documents-archive
  /external/google-benchmark/
mingw.py 114 def unpack(archive, location, log = EmptyLogger()):
116 Unpacks a mingw-builds archive
119 log.info('unpacking %s', os.path.basename(archive))
120 cmd = [sevenzip, 'x', archive, '-o' + location, '-y']
127 Downloads and unpacks a mingw-builds archive
155 archive = os.path.join(location, filename)
156 with open(archive, 'wb') as out:
162 unpack(archive, location, log = log)
163 os.remove(archive)

Completed in 835 milliseconds

1 23 4 5 6 7 8 91011>>