Home
last modified time | relevance | path

Searched refs:oat_file_ (Results 1 – 6 of 6) sorted by relevance

/art/oatdump/
Doatdump.cc138 oat_file_(oat_file), in OatSymbolizer()
145 const InstructionSet isa = oat_file_->GetOatHeader().GetInstructionSet(); in Symbolize()
147 isa, oat_file_->GetOatHeader().GetInstructionSetFeaturesBitmap()); in Symbolize()
163 const uint8_t* rodata_begin = oat_file_->Begin(); in Symbolize()
164 const size_t rodata_size = oat_file_->GetOatHeader().GetExecutableOffset(); in Symbolize()
171 const uint8_t* text_begin = oat_file_->Begin() + rodata_size; in Symbolize()
172 const size_t text_size = oat_file_->End() - text_begin; in Symbolize()
182 oat_file_->DataBimgRelRoSize(), in Symbolize()
183 oat_file_->BssSize(), in Symbolize()
184 oat_file_->BssMethodsOffset(), in Symbolize()
[all …]
/art/runtime/
Doat_file.cc1872 : oat_file_(oat_file), in OatDexFile()
1907 : oat_file_(oat_file), in OatDexFile()
1958 bool is_vdex_verified = down_cast<const OatFileBackedByVdex*>(oat_file_)->IsClassVerifiedInVdex( in GetOatClass()
1961 return OatFile::OatClass(oat_file_, in GetOatClass()
1971 const uint8_t* oat_class_pointer = oat_file_->Begin() + oat_class_offset; in GetOatClass()
1972 CHECK_LT(oat_class_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass()
1975 CHECK_LT(status_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass()
1980 CHECK_LT(type_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass()
1985 CHECK_LE(after_type_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass()
1994 CHECK_LE(bitmap_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass()
[all …]
Doat_file.h255 const OatFile* const oat_file_; variable
476 if (kIsDebugBuild && oat_file_ == nullptr) { in GetOatFile()
481 return oat_file_; in GetOatFile()
578 const OatFile* const oat_file_ = nullptr; variable
/art/runtime/gc/space/
Dimage_space.h205 std::unique_ptr<OatFile> oat_file_; variable
Dimage_space.cc1858 space->oat_file_ = std::move(oat_file); in OpenOatFile()
1859 space->oat_file_non_owned_ = space->oat_file_.get(); in OpenOatFile()
2139 CHECK(oat_file_ != nullptr); in ReleaseOatFile()
2140 return std::move(oat_file_); in ReleaseOatFile()
/art/runtime/gc/collector/
Dimmune_spaces_test.cc53 oat_file_ = std::move(oat_file); in DummyImageSpace()
54 oat_file_non_owned_ = oat_file_.get(); in DummyImageSpace()