Home
last modified time | relevance | path

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

/art/runtime/oat/
Doat_file_assistant.cc743 std::string_view oat_checksums, in ValidateBootClassPathChecksums() argument
749 if (oat_checksums.empty() || oat_boot_class_path.empty()) { in ValidateBootClassPathChecksums()
750 *error_msg = oat_checksums.empty() ? "Empty checksums" : "Empty boot class path"; in ValidateBootClassPathChecksums()
769 if (oat_checksums.starts_with("i") && !found_d) { in ValidateBootClassPathChecksums()
775 std::string(oat_checksums).c_str()); in ValidateBootClassPathChecksums()
781 if (!ConsumePrefix(&oat_checksums, boot_image_info.checksum)) { in ValidateBootClassPathChecksums()
783 std::string(oat_checksums).c_str(), in ValidateBootClassPathChecksums()
790 } else if (oat_checksums.starts_with("d")) { in ValidateBootClassPathChecksums()
797 oat_checksums.remove_prefix(1u); in ValidateBootClassPathChecksums()
799 if (!ConsumePrefix(&oat_checksums, checksum)) { in ValidateBootClassPathChecksums()
[all …]
Doat_file_assistant.h371 std::string_view oat_checksums,
/art/runtime/gc/space/
Dimage_space.cc1470 /*inout*/std::string_view* oat_checksums, in CheckAndRemoveImageChecksum() argument
1474 if (!oat_checksums->starts_with(image_checksum)) { in CheckAndRemoveImageChecksum()
1476 std::string(*oat_checksums).c_str(), in CheckAndRemoveImageChecksum()
1480 oat_checksums->remove_prefix(image_checksum.size()); in CheckAndRemoveImageChecksum()
3596 std::string_view oat_checksums, in VerifyBootClassPathChecksums() argument
3604 if (oat_checksums.empty() || oat_boot_class_path.empty()) { in VerifyBootClassPathChecksums()
3605 *error_msg = oat_checksums.empty() ? "Empty checksums." : "Empty boot class path."; in VerifyBootClassPathChecksums()
3631 while (image_pos != num_image_spaces && oat_checksums.starts_with("i")) { in VerifyBootClassPathChecksums()
3639 if (!CheckAndRemoveImageChecksum(component_count, checksum, &oat_checksums, error_msg)) { in VerifyBootClassPathChecksums()
3669 if (!oat_checksums.starts_with(":")) { in VerifyBootClassPathChecksums()
[all …]
Dimage_space.h250 std::string_view oat_checksums,