Lines Matching refs:ZipString
159 static uint32_t ComputeHash(const ZipString& name) { in ComputeHash()
175 static int64_t EntryToIndex(const ZipString* hash_table, in EntryToIndex()
177 const ZipString& name) { in EntryToIndex()
197 static int32_t AddToHash(ZipString *hash_table, const uint64_t hash_table_size, in AddToHash()
198 const ZipString& name) { in AddToHash()
374 archive->hash_table = reinterpret_cast<ZipString*>(calloc(archive->hash_table_size, in ParseZipArchive()
375 sizeof(ZipString))); in ParseZipArchive()
378 archive->hash_table_size, sizeof(ZipString)); in ParseZipArchive()
427 ZipString entry_name; in ParseZipArchive()
658 ZipString prefix;
659 ZipString suffix;
662 IterationHandle(const ZipString* in_prefix, in IterationHandle()
663 const ZipString* in_suffix) { in IterationHandle()
691 const ZipString* optional_prefix, in StartIteration()
692 const ZipString* optional_suffix) { in StartIteration()
712 int32_t FindEntry(const ZipArchiveHandle handle, const ZipString& entryName, in FindEntry()
731 int32_t Next(void* cookie, ZipEntry* data, ZipString* name) { in Next()
745 const ZipString* hash_table = archive->hash_table; in Next()
1097 ZipString::ZipString(const char* entry_name) in ZipString() function in ZipString