Searched refs:UpdateChecksum (Results 1 – 4 of 4) sorted by relevance
/art/runtime/ |
D | oat.cc | 156 UpdateChecksum(&instruction_set_, sizeof(instruction_set_)); in UpdateChecksumWithHeaderData() 157 UpdateChecksum(&instruction_set_features_bitmap_, sizeof(instruction_set_features_bitmap_)); in UpdateChecksumWithHeaderData() 158 UpdateChecksum(&dex_file_count_, sizeof(dex_file_count_)); in UpdateChecksumWithHeaderData() 159 UpdateChecksum(&image_file_location_oat_checksum_, sizeof(image_file_location_oat_checksum_)); in UpdateChecksumWithHeaderData() 160 UpdateChecksum(&image_file_location_oat_data_begin_, sizeof(image_file_location_oat_data_begin_)); in UpdateChecksumWithHeaderData() 163 UpdateChecksum(&key_value_store_size_, sizeof(key_value_store_size_)); in UpdateChecksumWithHeaderData() 167 UpdateChecksum(&key_value_store_, key_value_store_size_); in UpdateChecksumWithHeaderData() 170 UpdateChecksum(&executable_offset_, sizeof(executable_offset_)); in UpdateChecksumWithHeaderData() 171 UpdateChecksum(&interpreter_to_interpreter_bridge_offset_, in UpdateChecksumWithHeaderData() 173 UpdateChecksum(&interpreter_to_compiled_code_bridge_offset_, in UpdateChecksumWithHeaderData() [all …]
|
D | oat.h | 62 void UpdateChecksum(const void* data, size_t length);
|
/art/compiler/ |
D | oat_test.cc | 846 TEST_F(OatTest, UpdateChecksum) { in TEST_F() argument 859 oat_header->UpdateChecksum(OatHeader::kOatMagic, sizeof(OatHeader::kOatMagic)); in TEST_F() 863 oat_header->UpdateChecksum(nullptr, 0); in TEST_F() 866 oat_header->UpdateChecksum(OatHeader::kOatMagic, sizeof(OatHeader::kOatMagic)); in TEST_F()
|
D | oat_writer.cc | 77 oat_header_->UpdateChecksum(buffer, byte_count); in WriteFully() 534 oat_header_->UpdateChecksum(dex_files_map->Begin(), size); in WriteAndOpenDexFiles()
|