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

1 23 4 5 6 7 8 91011>>

  /external/libweave/third_party/
get_libevhtp.sh 17 curl -L https://github.com/ellzey/libevhtp/archive/$LIBEVHTP_VERSION.tar.gz | tar xz || exit 1
  /external/lzma/CPP/7zip/UI/Common/
LoadCodecs.h 33 #include "../../Archive/IArchive.h"
191 HRESULT CreateArchiveHandler(const CArcInfoEx &ai, void **archive, bool outHandler) const
193 return Libs[ai.LibIndex].CreateObject(&ai.ClassID, outHandler ? &IID_IOutArchive : &IID_IInArchive, (void **)archive);
251 HRESULT CreateInArchive(unsigned formatIndex, CMyComPtr<IInArchive> &archive) const
259 archive = ai.CreateInArchive(); local
264 return CreateArchiveHandler(ai, (void **)&archive, false);
270 HRESULT CreateOutArchive(unsigned formatIndex, CMyComPtr<IOutArchive> &archive) const
278 archive = ai.CreateOutArchive(); local
283 return CreateArchiveHandler(ai, (void **)&archive, true);
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/selinux/scripts/
make-update 22 ARCHIVE=$PKG-$VERS.tar.gz
24 git archive --format=tar --prefix=$PKG-$VERS/ $PKG-$VERS | gzip > ../$DEST/$ARCHIVE
29 echo "Copy $ARCHIVE from $DEST to the server and update its download link and checksum on the Releases wiki page:"
33 echo "[http://userspace.selinuxproject.org/releases/$TAG/$ARCHIVE $ARCHIVE]"
35 echo "`sha256sum $ARCHIVE`"
release 14 ARCHIVE=$i-$VERS.tar.gz
16 git archive --format=tar --prefix=$i-$VERS/ $i-$VERS | gzip > ../$DEST/$ARCHIVE
  /packages/providers/DownloadProvider/
Android.mk 12 android-support-documents-archive
  /external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/tools/ftfuzzer/
ftmutator.cc 38 #include <archive.h>
54 check_result( struct archive* a,
67 archive_read_entry_data( struct archive *ar,
99 unique_ptr<struct archive,
112 unique_ptr<struct archive,
116 // read files contained in archive
235 unique_ptr<struct archive,
242 // `used' may not be correct until after the archive is closed.
250 unique_ptr<struct archive,
  /external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/glacier/
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...]
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()
  /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/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 178 * Compare current archive and crc with values stored in {@link SharedPreferences}. Should be
181 private static boolean isModified(Context context, File archive, long currentCrc) {
183 return (prefs.getLong(KEY_TIME_STAMP, NO_VALUE) != getTimeStamp(archive))
187 private static long getTimeStamp(File archive) {
188 long timeStamp = archive.lastModified();
197 private static long getZipCrc(File archive) throws IOException {
198 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...]

Completed in 1426 milliseconds

1 23 4 5 6 7 8 91011>>