| 70 | } |
| 71 | |
| 72 | uint32_t DexFile::ChecksumMemoryRange(const uint8_t* begin, size_t size) { |
| 73 | return adler32(adler32(0L, Z_NULL, 0), begin, size); |
| 74 | } |
| 75 | |
| 76 | int DexFile::GetPermissions() const { |
| 77 | CHECK(container_.get() != nullptr); |
nothing calls this directly
no outgoing calls
no test coverage detected