Home | History | Annotate | Download | only in space

Lines Matching refs:checksums

1887     std::vector<uint32_t> checksums;
1888 if (!dex_file_loader.GetMultiDexChecksums(dex_file_location.c_str(), &checksums, error_msg)) {
1889 *error_msg = StringPrintf("ValidateOatFile failed to get checksums of dex file '%s' "
1896 CHECK(!checksums.empty());
1897 if (checksums[0] != oat_dex_file->GetDexFileLocationChecksum()) {
1903 checksums[0]);
1907 // Verify checksums for any related multidex entries.
1908 for (size_t i = 1; i < checksums.size(); i++) {
1922 if (checksums[i] != multi_dex->GetDexFileLocationChecksum()) {
1928 checksums[i]);