Searched refs:pArchive (Results 1 - 2 of 2) sorted by relevance

/dalvik/libdex/
H A DZipArchive.h88 * On success, returns 0 and populates "pArchive". Returns nonzero errno
91 int dexZipOpenArchive(const char* fileName, ZipArchive* pArchive);
100 int dexZipPrepArchive(int fd, const char* debugFileName, ZipArchive* pArchive);
108 void dexZipCloseArchive(ZipArchive* pArchive);
113 DEX_INLINE int dexZipGetArchiveFd(const ZipArchive* pArchive) { argument
114 return pArchive->mFd;
121 ZipEntry dexZipFindEntry(const ZipArchive* pArchive,
130 int dexZipGetEntryInfo(const ZipArchive* pArchive, ZipEntry entry,
137 DEX_INLINE long dexGetZipEntryOffset(const ZipArchive* pArchive, argument
141 dexZipGetEntryInfo(pArchive, entr
144 dexGetZipEntryUncompLen(const ZipArchive* pArchive, const ZipEntry entry) argument
151 dexGetZipEntryModTime(const ZipArchive* pArchive, const ZipEntry entry) argument
158 dexGetZipEntryCrc32(const ZipArchive* pArchive, const ZipEntry entry) argument
[all...]
H A DZipArchive.cpp77 static int entryToIndex(const ZipArchive* pArchive, const ZipEntry entry) argument
80 if (ent < 0 || ent >= pArchive->mHashTableSize ||
81 pArchive->mHashTable[ent].name == NULL)
105 static void addToHash(ZipArchive* pArchive, const char* str, int strLen, argument
108 const int hashTableSize = pArchive->mHashTableSize;
114 while (pArchive->mHashTable[ent].name != NULL)
117 pArchive->mHashTable[ent].name = str;
118 pArchive->mHashTable[ent].nameLen = strLen;
145 ZipArchive* pArchive, off_t fileLength, size_t readAmount, u1* scanBuf)
205 * in pArchive
144 mapCentralDirectory0(int fd, const char* debugFileName, ZipArchive* pArchive, off_t fileLength, size_t readAmount, u1* scanBuf) argument
228 mapCentralDirectory(int fd, const char* debugFileName, ZipArchive* pArchive) argument
274 parseZipArchive(ZipArchive* pArchive) argument
347 dexZipOpenArchive(const char* fileName, ZipArchive* pArchive) argument
370 dexZipPrepArchive(int fd, const char* debugFileName, ZipArchive* pArchive) argument
400 dexZipCloseArchive(ZipArchive* pArchive) argument
425 dexZipFindEntry(const ZipArchive* pArchive, const char* entryName) argument
479 dexZipGetEntryInfo(const ZipArchive* pArchive, ZipEntry entry, int* pMethod, size_t* pUncompLen, size_t* pCompLen, off_t* pOffset, long* pModWhen, long* pCrc32) argument
696 dexZipExtractEntryToFile(const ZipArchive* pArchive, const ZipEntry entry, int fd) argument
[all...]

Completed in 36 milliseconds