Home
last modified time | relevance | path

Searched refs:dex_file_location_size_ (Results 1 – 2 of 2) sorted by relevance

/art/compiler/
Doat_writer.cc1404 dex_file_location_size_ = location.size(); in OatDexFile()
1412 return sizeof(dex_file_location_size_) in SizeOf()
1413 + dex_file_location_size_ in SizeOf()
1420 oat_header->UpdateChecksum(&dex_file_location_size_, sizeof(dex_file_location_size_)); in UpdateChecksum()
1421 oat_header->UpdateChecksum(dex_file_location_data_, dex_file_location_size_); in UpdateChecksum()
1432 if (!out->WriteFully(&dex_file_location_size_, sizeof(dex_file_location_size_))) { in Write()
1436 oat_writer->size_oat_dex_file_location_size_ += sizeof(dex_file_location_size_); in Write()
1437 if (!out->WriteFully(dex_file_location_data_, dex_file_location_size_)) { in Write()
1441 oat_writer->size_oat_dex_file_location_data_ += dex_file_location_size_; in Write()
Doat_writer.h191 uint32_t dex_file_location_size_; variable