Lines Matching refs:checksums
1825 std::vector<uint32_t> checksums;
1826 if (!DexFile::GetMultiDexChecksums(dex_file_location.c_str(), &checksums, error_msg)) {
1827 *error_msg = StringPrintf("ValidateOatFile failed to get checksums of dex file '%s' "
1834 CHECK(!checksums.empty());
1835 if (checksums[0] != oat_dex_file->GetDexFileLocationChecksum()) {
1841 checksums[0]);
1845 // Verify checksums for any related multidex entries.
1846 for (size_t i = 1; i < checksums.size(); i++) {
1858 if (checksums[i] != multi_dex->GetDexFileLocationChecksum()) {
1864 checksums[i]);