Home | History | Annotate | Download | only in minzip

Lines Matching refs:ZipEntry

88  * For debugging, dump the contents of a ZipEntry.
91 static void dumpEntry(const ZipEntry* pEntry)
102 * Compare two ZipEntry structs, by name.
106 const ZipEntry* entry1 = (const ZipEntry*) ventry1;
107 const ZipEntry* entry2 = (const ZipEntry*) ventry2;
117 * find a ZipEntry struct by name.
121 const ZipEntry* entry = (const ZipEntry*) ventry;
131 * Compute the hash code for a ZipEntry filename.
146 static void addEntryToHashTable(HashTable* pHash, ZipEntry* pEntry)
149 const ZipEntry* found;
151 found = (const ZipEntry*)mzHashTableLookup(pHash,
243 pArchive->pEntries = (ZipEntry*) calloc(numEntries, sizeof(ZipEntry));
250 ZipEntry* pEntry;
321 (i - target) * sizeof(ZipEntry));
505 const ZipEntry* mzFindZipEntry(const ZipArchive* pArchive,
510 return (const ZipEntry*)mzHashTableLookup(pArchive->pHash,
517 bool mzIsZipEntrySymlink(const ZipEntry* pEntry)
528 const ZipEntry *pEntry, ProcessZipEntryContentsFunction processFunction,
557 const ZipEntry *pEntry, ProcessZipEntryContentsFunction processFunction,
673 const ZipEntry *pEntry, ProcessZipEntryContentsFunction processFunction,
714 bool mzIsZipEntryIntact(const ZipArchive *pArchive, const ZipEntry *pEntry)
755 bool mzReadZipEntry(const ZipArchive* pArchive, const ZipEntry* pEntry,
802 const ZipEntry *pEntry, int fd)
834 const ZipEntry *pEntry, unsigned char *buffer)
865 static const char *targetEntryPath(MzPathHelper *helper, ZipEntry *pEntry)
988 ZipEntry *pEntry = pArchive->pEntries + i;