Searched defs:checksum (Results 1 - 5 of 5) sorted by relevance

/art/tools/dexfuzz/src/dexfuzz/rawdex/
H A DHeaderItem.java25 public int checksum; field in class:HeaderItem
55 checksum = file.readUInt();
96 file.writeUInt(checksum);
/art/runtime/
H A Ddex_file_test.cc112 // contents due to the checksum etc, so we embed the exact input here.
206 uint32_t checksum; local
209 EXPECT_TRUE(DexFile::GetChecksum(GetLibCoreDexFileName().c_str(), &checksum, &error_msg))
211 EXPECT_EQ(java_lang_dex_file_->GetLocationChecksum(), checksum);
H A Doat_file_assistant_test.cc60 uint32_t checksum; local
68 ASSERT_FALSE(DexFile::GetChecksum(GetStrippedDexSrc1().c_str(), &checksum, &error_msg))
73 // GetMultiDexSrc2 should have the same primary dex checksum as
74 // GetMultiDexSrc1, but a different secondary dex checksum.
385 // Now overwrite the dex file with GetMultiDexSrc2 so the secondary checksum
H A Doat_file.cc435 "dex file checksum", GetLocation().c_str(), i,
533 // an incorrect OatDexFile. As long as we have a checksum to check, we shall return
580 std::string checksum("<unspecified>");
582 checksum = StringPrintf("0x%08x", *dex_location_checksum);
586 << " with checksum " << checksum << " in OatFile " << GetLocation();
592 << " with checksum 0x" << std::hex << odf->GetDexFileLocationChecksum();
790 // Expected pairs of location and checksum.
797 std::string& checksum = *(it + 1); local
798 int64_t converted = strtoll(checksum
[all...]
H A Ddex_file.cc79 bool DexFile::GetChecksum(const char* filename, uint32_t* checksum, std::string* error_msg) { argument
80 CHECK(checksum != nullptr);
114 *checksum = zip_entry->GetCrc32();
123 *checksum = dex_file->GetHeader().checksum_;
1047 os << StringPrintf("[DexFile: %s dex-checksum=%08x location-checksum=%08x %p-%p]",

Completed in 172 milliseconds