| 85 | } |
| 86 | |
| 87 | CompactDexFile::CompactDexFile(const uint8_t* base, |
| 88 | size_t size, |
| 89 | const uint8_t* data_begin, |
| 90 | size_t data_size, |
| 91 | const std::string& location, |
| 92 | uint32_t location_checksum, |
| 93 | const OatDexFile* oat_dex_file, |
| 94 | std::unique_ptr<DexFileContainer> container) |
| 95 | : DexFile(base, |
| 96 | size, |
| 97 | data_begin, |
| 98 | data_size, |
| 99 | location, |
| 100 | location_checksum, |
| 101 | oat_dex_file, |
| 102 | std::move(container), |
| 103 | /*is_compact_dex*/ true), |
| 104 | debug_info_offsets_(DataBegin() + GetHeader().debug_info_offsets_pos_, |
| 105 | GetHeader().debug_info_base_, |
| 106 | GetHeader().debug_info_offsets_table_offset_) {} |
| 107 | |
| 108 | } // namespace art_lkchan |
nothing calls this directly
no outgoing calls
no test coverage detected