Home
last modified time | relevance | path

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

/system/libziparchive/
Dzip_archive.cc542 const uint8_t* const cd_ptr = archive->central_directory.GetBasePtr(); in ParseZipArchive() local
544 const uint8_t* const cd_end = cd_ptr + cd_length; in ParseZipArchive()
546 const uint8_t* ptr = cd_ptr; in ParseZipArchive()
614 if ((ptr - cd_ptr) > static_cast<int64_t>(cd_length)) { in ParseZipArchive()
615 ALOGW("Zip: bad CD advance (%tu vs %zu) at entry %" PRIu64, ptr - cd_ptr, cd_length, i); in ParseZipArchive()
627 ptr = cd_ptr; in ParseZipArchive()
632 auto add_result = archive->cd_entry_map->AddToMap(entry_name, cd_ptr); in ParseZipArchive()