Searched refs:oat_file_ (Results 1 – 6 of 6) sorted by relevance
/art/oatdump/ |
D | oatdump.cc | 134 oat_file_(oat_file), in OatSymbolizer() 141 const InstructionSet isa = oat_file_->GetOatHeader().GetInstructionSet(); in Symbolize() 143 isa, oat_file_->GetOatHeader().GetInstructionSetFeaturesBitmap()); in Symbolize() 159 const uint8_t* rodata_begin = oat_file_->Begin(); in Symbolize() 160 const size_t rodata_size = oat_file_->GetOatHeader().GetExecutableOffset(); in Symbolize() 167 const uint8_t* text_begin = oat_file_->Begin() + rodata_size; in Symbolize() 168 const size_t text_size = oat_file_->End() - text_begin; in Symbolize() 178 oat_file_->DataBimgRelRoSize(), in Symbolize() 179 oat_file_->BssSize(), in Symbolize() 180 oat_file_->BssMethodsOffset(), in Symbolize() [all …]
|
/art/runtime/ |
D | oat_file.cc | 1875 : oat_file_(oat_file), in OatDexFile() 1910 : oat_file_(oat_file), in OatDexFile() 1961 bool is_vdex_verified = down_cast<const OatFileBackedByVdex*>(oat_file_)->IsClassVerifiedInVdex( in GetOatClass() 1964 return OatFile::OatClass(oat_file_, in GetOatClass() 1974 const uint8_t* oat_class_pointer = oat_file_->Begin() + oat_class_offset; in GetOatClass() 1975 CHECK_LT(oat_class_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass() 1978 CHECK_LT(status_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass() 1981 << " at " << oat_file_->GetLocation(); in GetOatClass() 1984 CHECK_LT(type_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass() 1986 CHECK_LT(type, kOatClassMax) << oat_file_->GetLocation(); in GetOatClass() [all …]
|
D | oat_file.h | 285 const OatFile* const oat_file_; variable 486 return oat_file_; in GetOatFile() 583 const OatFile* const oat_file_ = nullptr; variable
|
/art/runtime/gc/space/ |
D | image_space.h | 311 std::unique_ptr<OatFile> oat_file_; variable
|
D | image_space.cc | 3245 space->oat_file_ = std::move(oat_file); in OpenOatFile() 3246 space->oat_file_non_owned_ = space->oat_file_.get(); in OpenOatFile() 3742 CHECK(oat_file_ != nullptr); in ReleaseOatFile() 3743 return std::move(oat_file_); in ReleaseOatFile()
|
/art/runtime/gc/collector/ |
D | immune_spaces_test.cc | 54 oat_file_ = std::move(oat_file); in FakeImageSpace() 55 oat_file_non_owned_ = oat_file_.get(); in FakeImageSpace()
|