Home
last modified time | relevance | path

Searched refs:pHash (Results 1 – 2 of 2) sorted by relevance

/bootable/recovery/minzip/
DZip.c146 static void addEntryToHashTable(HashTable* pHash, ZipEntry* pEntry) in addEntryToHashTable() argument
151 found = (const ZipEntry*)mzHashTableLookup(pHash, in addEntryToHashTable()
244 pArchive->pHash = mzHashTableCreate(mzHashSize(numEntries), NULL); in parseZipArchive()
245 if (pArchive->pEntries == NULL || pArchive->pHash == NULL) in parseZipArchive()
387 addEntryToHashTable(pArchive->pHash, pEntry); in parseZipArchive()
402 addEntryToHashTable(pArchive->pHash, &pArchive->pEntries[i]); in parseZipArchive()
410 mzHashTableFree(pArchive->pHash); in parseZipArchive()
411 pArchive->pHash = NULL; in parseZipArchive()
493 mzHashTableFree(pArchive->pHash); in mzCloseZipArchive()
496 pArchive->pHash = NULL; in mzCloseZipArchive()
[all …]
DZip.h52 HashTable* pHash; // maps file name to ZipEntry member