| 199 | } |
| 200 | |
| 201 | uint32_t DexFile::Header::GetVersion() const { |
| 202 | const char* version = reinterpret_cast<const char*>(&magic_[kDexMagicSize]); |
| 203 | return atoi(version); |
| 204 | } |
| 205 | |
| 206 | const DexFile::ClassDef* DexFile::FindClassDef(dex::TypeIndex type_idx) const { |
| 207 | size_t num_class_defs = NumClassDefs(); |
no outgoing calls
no test coverage detected