Searched refs:zentry (Results 1 – 2 of 2) sorted by relevance
/system/extras/simpleperf/ |
D | read_apk.cpp | 75 ZipEntry zentry; in FindElfInApkByOffsetWithoutCache() local 79 while ((zrc = Next(iteration_cookie, &zentry, &zname)) == 0) { in FindElfInApkByOffsetWithoutCache() 80 if (zentry.method == kCompressStored && in FindElfInApkByOffsetWithoutCache() 81 file_offset >= static_cast<uint64_t>(zentry.offset) && in FindElfInApkByOffsetWithoutCache() 82 file_offset < static_cast<uint64_t>(zentry.offset + zentry.uncompressed_length)) { in FindElfInApkByOffsetWithoutCache() 94 if (lseek(fhelper.fd(), zentry.offset, SEEK_SET) != zentry.offset) { in FindElfInApkByOffsetWithoutCache() 95 PLOG(ERROR) << "lseek() failed in " << apk_path << " offset " << zentry.offset; in FindElfInApkByOffsetWithoutCache() 109 return std::unique_ptr<EmbeddedElf>(new EmbeddedElf(apk_path, entry_name, zentry.offset, in FindElfInApkByOffsetWithoutCache() 110 zentry.uncompressed_length)); in FindElfInApkByOffsetWithoutCache() 127 ZipEntry zentry; in FindElfInApkByName() local [all …]
|
/system/core/libbacktrace/ |
D | BacktraceOffline.cpp | 824 ZipEntry zentry; in OpenEmbeddedElfFile() local 825 ret_code = FindEntry(handle, ZipString(elf_file.c_str()), &zentry); in OpenEmbeddedElfFile() 831 if (zentry.method != kCompressStored || zentry.compressed_length != zentry.uncompressed_length) { in OpenEmbeddedElfFile() 837 zentry.uncompressed_length, in OpenEmbeddedElfFile() 838 zentry.offset); in OpenEmbeddedElfFile()
|