Lines Matching refs:oat_file_

2092     : oat_file_(oat_file),  in OatDexFile()
2136 : oat_file_(oat_file), in OatDexFile()
2190 return OatFile::OatClass(oat_file_, in GetOatClass()
2199 CHECK_GE(oat_class_offset, sizeof(OatHeader)) << oat_file_->GetLocation(); in GetOatClass()
2200 CHECK_LT(oat_class_offset, oat_file_->Size()) << oat_file_->GetLocation(); in GetOatClass()
2202 oat_file_->Size() - oat_class_offset) << oat_file_->GetLocation(); in GetOatClass()
2203 const uint8_t* current_pointer = oat_file_->Begin() + oat_class_offset; in GetOatClass()
2210 << static_cast<uint32_t>(status_value) << " at " << oat_file_->GetLocation(); in GetOatClass()
2211 CHECK_LT(type_value, enum_cast<uint8_t>(OatClassType::kOatClassMax)) << oat_file_->GetLocation(); in GetOatClass()
2219 CHECK_LE(sizeof(uint32_t), static_cast<size_t>(oat_file_->End() - current_pointer)) in GetOatClass()
2220 << oat_file_->GetLocation(); in GetOatClass()
2223 CHECK_NE(num_methods, 0u) << oat_file_->GetLocation(); in GetOatClass()
2227 CHECK_LE(bitmap_size, static_cast<size_t>(oat_file_->End() - current_pointer)) in GetOatClass()
2228 << oat_file_->GetLocation(); in GetOatClass()
2238 static_cast<size_t>(oat_file_->End() - current_pointer) / sizeof(OatMethodOffsets)) in GetOatClass()
2239 << oat_file_->GetLocation(); in GetOatClass()
2243 return OatFile::OatClass(oat_file_, status, type, num_methods, bitmap_pointer, methods_pointer); in GetOatClass()
2316 : oat_file_(oat_file), in OatClass()
2332 return reinterpret_cast<const uint8_t*>(oat_method_offsets) - oat_file_->Begin(); in GetOatMethodOffsetsOffset()
2342 CHECK_LT(method_index, num_methods_) << oat_file_->GetLocation(); in GetOatMethodOffsets()
2357 oat_file_->End() - reinterpret_cast<const uint8_t*>(methods_pointer_)); in GetOatMethodOffsets()
2359 << oat_file_->GetLocation(); in GetOatMethodOffsets()
2370 if (oat_file_->IsExecutable() || in GetOatMethod()
2373 return OatMethod(oat_file_->Begin(), oat_method_offsets->code_offset_); in GetOatMethod()
2377 return OatMethod(oat_file_->Begin(), 0); in GetOatMethod()