| 946 | |
| 947 | template <typename T> |
| 948 | const T* DataPointer(size_t offset) const { |
| 949 | // DCHECK_LT(offset, DataSize()) << "Offset past end of data section"; |
| 950 | return (offset != 0u) ? reinterpret_cast<const T*>(DataBegin() + offset) : nullptr; |
| 951 | } |
| 952 | |
| 953 | const OatDexFile* GetOatDexFile() const { |
| 954 | return oat_dex_file_; |