Home
last modified time | relevance | path

Searched refs:map_off_ (Results 1 – 11 of 11) sorted by relevance

/art/libdexfile/dex/
Ddex_file.cc177 const MapList* map_list = reinterpret_cast<const MapList*>(DataBegin() + header_->map_off_); in InitializeSectionsFromMapList()
178 if (header_->map_off_ == 0 || header_->map_off_ > DataSize()) { in InitializeSectionsFromMapList()
184 size_t map_limit = header_->map_off_ + count * sizeof(MapItem); in InitializeSectionsFromMapList()
185 if (header_->map_off_ >= map_limit || map_limit > DataSize()) { in InitializeSectionsFromMapList()
Ddex_file_tracking_registrar.cc231 size_t map_offset = dex_file_->GetHeader().map_off_; in SetAllStringDataRegistration()
Ddex_file_verifier.cc615 CheckValidOffsetAndSize(header_->map_off_, in CheckHeader()
616 header_->map_off_, in CheckHeader()
655 const dex::MapList* map = reinterpret_cast<const dex::MapList*>(begin_ + header_->map_off_); in CheckMap()
2297 const dex::MapList* map = reinterpret_cast<const dex::MapList*>(begin_ + header_->map_off_); in CheckIntraSection()
2364 if (UNLIKELY(section_offset != header_->map_off_)) { in CheckIntraSection()
2366 section_offset, header_->map_off_); in CheckIntraSection()
3246 const dex::MapList* map = reinterpret_cast<const dex::MapList*>(begin_ + header_->map_off_); in CheckInterSection()
Ddex_file.h100 uint32_t map_off_ = 0; // map list offset from data_off_ member
747 return reinterpret_cast<const dex::MapList*>(DataBegin() + header_->map_off_); in GetMapList()
Dtest_dex_file_builder.h97 header->map_off_ = 0u; // Unused. TODO: This is wrong. Dex files created by this builder
Ddex_file_verifier_test.cc1331 off_ptr = &header->map_off_; in TEST_F()
/art/dex2oat/
Ddex2oat_test.cc1818 header.map_off_ = 10 * MB; in TEST_F()
1845 header.map_off_ = 10 * MB; in TEST_F()
1966 header->map_off_ = sizeof(DexFile::Header); in TEST_F()
1973 map_list->list_[1].offset_ = header->map_off_; in TEST_F()
1975 header->data_off_ = header->map_off_; in TEST_F()
/art/tools/hiddenapi/
Dhiddenapi.cc837 CHECK_EQ(old_item.offset_, GetHeader().map_off_); in CreateMapListWithNewItem()
847 GetHeader().map_off_ = new_map_offset; in CreateMapListWithNewItem()
/art/dexlayout/
Dcompact_dex_writer.cc281 header.map_off_ = header_->MapListOffset(); in WriteHeader()
Ddex_ir_builder.cc313 header->SetMapListOffset(disk_header.map_off_); in DexIrBuilder()
381 CHECK_EQ(item->offset_, disk_header.map_off_); in CheckAndSetRemainingOffsets()
Ddex_writer.cc815 header.map_off_ = header_->MapListOffset(); in WriteHeader()