Home | History | Annotate | Download | only in utils

Lines Matching refs:ZipEntryRO

98  * The values we return for ZipEntryRO use 0 as an invalid value, so we
116 * Convert a ZipEntryRO to a hash table index, verifying that it's in a
119 int ZipFileRO::entryToIndex(const ZipEntryRO entry) const
123 ALOGW("Invalid ZipEntryRO %p (%ld)\n", entry, ent);
417 ZipEntryRO ZipFileRO::findEntryByName(const char* fileName) const
436 return (ZipEntryRO)(long)(ent + kZipEntryAdj);
452 ZipEntryRO ZipFileRO::findEntryByIndex(int idx) const
462 return (ZipEntryRO) (ent + kZipEntryAdj);
475 bool ZipFileRO::getEntryInfo(ZipEntryRO entry, int* pMethod, size_t* pUncompLen,
622 int ZipFileRO::getEntryFileName(ZipEntryRO entry, char* buffer, int bufLen)
641 FileMap* ZipFileRO::createEntryFileMap(ZipEntryRO entry) const
672 bool ZipFileRO::uncompressEntry(ZipEntryRO entry, void* buffer) const
733 bool ZipFileRO::uncompressEntry(ZipEntryRO entry, int fd) const