Lines Matching refs:entry
119 int ZipFileRO::entryToIndex(const ZipEntryRO entry) const in entryToIndex()
121 long ent = ((long) entry) - kZipEntryAdj; in entryToIndex()
123 LOGW("Invalid ZipEntryRO %p (%ld)\n", entry, ent); in entryToIndex()
475 bool ZipFileRO::getEntryInfo(ZipEntryRO entry, int* pMethod, size_t* pUncompLen, in getEntryInfo() argument
480 const int ent = entryToIndex(entry); in getEntryInfo()
622 int ZipFileRO::getEntryFileName(ZipEntryRO entry, char* buffer, int bufLen) in getEntryFileName() argument
625 int ent = entryToIndex(entry); in getEntryFileName()
641 FileMap* ZipFileRO::createEntryFileMap(ZipEntryRO entry) const in createEntryFileMap()
654 if (!getEntryInfo(entry, NULL, NULL, &compLen, &offset, NULL, NULL)) in createEntryFileMap()
672 bool ZipFileRO::uncompressEntry(ZipEntryRO entry, void* buffer) const in uncompressEntry() argument
676 int ent = entryToIndex(entry); in uncompressEntry()
685 getEntryInfo(entry, &method, &uncompLen, &compLen, &offset, NULL, NULL); in uncompressEntry()
687 FileMap* file = createEntryFileMap(entry); in uncompressEntry()
733 bool ZipFileRO::uncompressEntry(ZipEntryRO entry, int fd) const in uncompressEntry() argument
736 int ent = entryToIndex(entry); in uncompressEntry()
745 getEntryInfo(entry, &method, &uncompLen, &compLen, &offset, NULL, NULL); in uncompressEntry()
747 FileMap* file = createEntryFileMap(entry); in uncompressEntry()