HomeSort by relevance Sort by last modified time
    Searched defs:ZipEntry (Results 1 - 25 of 38) sorted by null

1 2

  /art/runtime/
zip_archive.h 37 class ZipEntry {
42 virtual ~ZipEntry();
48 ZipEntry(ZipArchiveHandle handle,
49 ::ZipEntry* zip_entry) : handle_(handle), zip_entry_(zip_entry) {}
52 ::ZipEntry* const zip_entry_;
55 DISALLOW_COPY_AND_ASSIGN(ZipEntry);
64 ZipEntry* Find(const char* name, std::string* error_msg) const;
71 friend class ZipEntry;
zip_archive.cc 31 uint32_t ZipEntry::GetUncompressedLength() {
35 uint32_t ZipEntry::GetCrc32() {
39 ZipEntry::~ZipEntry() {
43 bool ZipEntry::ExtractToFile(File& file, std::string* error_msg) {
53 MemMap* ZipEntry::ExtractToMemMap(const char* zip_filename, const char* entry_filename,
122 ZipEntry* ZipArchive::Find(const char* name, std::string* error_msg) const {
126 std::unique_ptr< ::ZipEntry> zip_entry(new ::ZipEntry);
133 return new ZipEntry(handle_, zip_entry.release())
    [all...]
  /build/tools/ziptime/
ZipEntry.h 20 // The ZipEntry class is tightly meshed with the ZipFile class.
36 * ZipEntry objects represent a single entry in a Zip archive.
42 class ZipEntry {
46 ZipEntry(void) {}
47 ~ZipEntry(void) {}
73 ZipEntry(const ZipEntry& src);
74 ZipEntry& operator=(const ZipEntry& src);
  /system/core/include/ziparchive/
zip_archive.h 69 struct ZipEntry {
83 // Crc32 value of this ZipEntry. This information might
88 // Compressed length of this ZipEntry. Might be present
93 // Uncompressed length of this ZipEntry. Might be present
98 // The offset to the start of data for this ZipEntry.
160 ZipEntry* data);
185 int32_t Next(void* cookie, ZipEntry* data, ZipString* name);
201 int32_t ExtractEntryToFile(ZipArchiveHandle handle, ZipEntry* entry, int fd);
211 int32_t ExtractToMemory(ZipArchiveHandle handle, ZipEntry* entry,
  /bootable/recovery/minzip/
Zip.h 32 typedef struct ZipEntry {
43 } ZipEntry;
50 ZipEntry* pEntries;
51 HashTable* pHash; // maps file name to ZipEntry
85 const ZipEntry* mzFindZipEntry(const ZipArchive* pArchive,
88 INLINE long mzGetZipEntryOffset(const ZipEntry* pEntry) {
91 INLINE long mzGetZipEntryUncompLen(const ZipEntry* pEntry) {
113 const ZipEntry *pEntry, ProcessZipEntryContentsFunction processFunction,
119 bool mzReadZipEntry(const ZipArchive* pArchive, const ZipEntry* pEntry,
126 const ZipEntry *pEntry, int fd)
    [all...]
  /build/tools/zipalign/
ZipEntry.h 20 // The ZipEntry class is tightly meshed with the ZipFile class.
36 * ZipEntry objects represent a single entry in a Zip archive.
41 * the likelihood of using ZipEntry objects after discarding the ZipFile.)
47 class ZipEntry {
51 ZipEntry(void)
54 ~ZipEntry(void) {}
167 * Initialize the structure with the contents of a ZipEntry from
170 status_t initFromExternal(const ZipEntry* pEntry);
207 ZipEntry(const ZipEntry& src)
    [all...]
  /frameworks/base/tools/aapt/
ZipEntry.h 20 // The ZipEntry class is tightly meshed with the ZipFile class.
35 * ZipEntry objects represent a single entry in a Zip archive.
40 * the likelihood of using ZipEntry objects after discarding the ZipFile.)
46 class ZipEntry {
50 ZipEntry(void)
53 ~ZipEntry(void) {}
171 * Initialize the structure with the contents of a ZipEntry from
174 status_t initFromExternal(const ZipFile* pZipFile, const ZipEntry* pEntry);
206 ZipEntry(const ZipEntry& src)
    [all...]
  /libcore/ojluni/src/main/java/java/util/zip/
ZipEntry.java 38 class ZipEntry implements ZipConstants, Cloneable {
63 public ZipEntry(String name, String comment, long crc, long compressedSize,
85 public ZipEntry(String name) {
103 public ZipEntry(ZipEntry e) {
119 ZipEntry() {}
360 ZipEntry e = (ZipEntry)super.clone();
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-archiver/2.2/
plexus-archiver-2.2.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-archiver/1.0/
plexus-archiver-1.0.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-archiver/2.2/
plexus-archiver-2.2.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-archiver/2.3/
plexus-archiver-2.3.jar 
  /external/guice/extensions/struts2/lib/
ant-1.6.5.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/
ant.jar 
  /prebuilts/tools/common/ant/
ant.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.7.0/
ant-1.7.0.jar 
  /prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.0/
ant-1.8.0.jar 
  /external/jarjar/lib/
apache-ant-1.9.4.jar 
  /external/owasp/sanitizer/tools/findbugs/lib/
ant.jar 
  /prebuilts/sdk/10/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/13/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/22/
android.jar 

Completed in 3882 milliseconds

1 2