Lines Matching refs:oat_file_

1862     : oat_file_(oat_file),  in OatDexFile()
1897 : oat_file_(oat_file), in OatDexFile()
1948 bool is_vdex_verified = down_cast<const OatFileBackedByVdex*>(oat_file_)->IsClassVerifiedInVdex( in GetOatClass()
1951 return OatFile::OatClass(oat_file_, in GetOatClass()
1961 const uint8_t* oat_class_pointer = oat_file_->Begin() + oat_class_offset; in GetOatClass()
1962 CHECK_LT(oat_class_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass()
1965 CHECK_LT(status_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass()
1968 << " at " << oat_file_->GetLocation(); in GetOatClass()
1971 CHECK_LT(type_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass()
1973 CHECK_LT(type, kOatClassMax) << oat_file_->GetLocation(); in GetOatClass()
1976 CHECK_LE(after_type_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass()
1985 CHECK_LE(bitmap_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass()
1990 CHECK_LE(methods_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass()
1993 return OatFile::OatClass(oat_file_, in GetOatClass()
2077 : oat_file_(oat_file), status_(status), type_(type), in OatClass()
2110 return reinterpret_cast<const uint8_t*>(oat_method_offsets) - oat_file_->Begin(); in GetOatMethodOffsetsOffset()
2140 if (oat_file_->IsExecutable() || in GetOatMethod()
2143 return OatMethod(oat_file_->Begin(), oat_method_offsets->code_offset_); in GetOatMethod()
2147 return OatMethod(oat_file_->Begin(), 0); in GetOatMethod()