For DexFiles directly from .dex files, this is the checksum from the DexFile::Header. For DexFiles opened from a zip files, this will be the ZipEntry CRC32 of classes.dex.
| 438 | // For DexFiles directly from .dex files, this is the checksum from the DexFile::Header. |
| 439 | // For DexFiles opened from a zip files, this will be the ZipEntry CRC32 of classes.dex. |
| 440 | uint32_t GetLocationChecksum() const { |
| 441 | return location_checksum_; |
| 442 | } |
| 443 | |
| 444 | const Header& GetHeader() const { |
| 445 | DCHECK(header_ != nullptr) << GetLocation(); |