Home
last modified time | relevance | path

Searched refs:GetChecksum (Results 1 – 10 of 10) sorted by relevance

/art/runtime/
Doat.h48 uint32_t GetChecksum() const;
Ddex_file_test.cc201 TEST_F(DexFileTest, GetChecksum) { in TEST_F() argument
205 EXPECT_TRUE(DexFile::GetChecksum(GetLibCoreDexFileName().c_str(), &checksum, &error_msg)) in TEST_F()
Doat.cc136 uint32_t OatHeader::GetChecksum() const { in GetChecksum() function in art::OatHeader
Ddex_file.h382 static bool GetChecksum(const char* filename, uint32_t* checksum, std::string* error_msg);
Ddex_file.cc73 bool DexFile::GetChecksum(const char* filename, uint32_t* checksum, std::string* error_msg) { in GetChecksum() function in art::DexFile
Dclass_linker.cc747 } else if (!DexFile::GetChecksum(next_name, next_location_checksum_pointer, &error_msg)) { in LoadMultiDexFilesFromOatFile()
820 if (!DexFile::GetChecksum(dex_location, dex_location_checksum_pointer, &checksum_error_msg)) { in OpenDexFilesFromOat()
/art/runtime/gc/space/
Dimage_space.cc675 uint32_t oat_checksum = oat_file->GetOatHeader().GetChecksum(); in OpenOatFile()
699 if (!DexFile::GetChecksum(dex_file_location.c_str(), &dex_file_location_checksum, error_msg)) { in ValidateOatFile()
/art/compiler/
Dimage_writer.cc568 oat_file_->GetOatHeader().GetChecksum(), in CalculateNewObjectOffsets()
843 image_header->SetOatChecksum(oat_header->GetChecksum()); in PatchOatCodeAndMethods()
/art/runtime/native/
Ddalvik_system_DexFile.cc309 if (!DexFile::GetChecksum(filename, &location_checksum, &error_msg)) { in CopyProfileFile()
/art/oatdump/
Doatdump.cc164 os << StringPrintf("0x%08x\n\n", oat_header.GetChecksum()); in Dump()