Home
last modified time | relevance | path

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

/art/oatdump/
Doatdump.cc128 oat_file_(oat_file), in OatSymbolizer()
135 const InstructionSet isa = oat_file_->GetOatHeader().GetInstructionSet(); in Symbolize()
137 isa, oat_file_->GetOatHeader().GetInstructionSetFeaturesBitmap()); in Symbolize()
153 const uint8_t* rodata_begin = oat_file_->Begin(); in Symbolize()
154 const size_t rodata_size = oat_file_->GetOatHeader().GetExecutableOffset(); in Symbolize()
161 const uint8_t* text_begin = oat_file_->Begin() + rodata_size; in Symbolize()
162 const size_t text_size = oat_file_->End() - text_begin; in Symbolize()
175 oat_file_->BssSize(), in Symbolize()
176 oat_file_->BssMethodsOffset(), in Symbolize()
177 oat_file_->BssRootsOffset(), in Symbolize()
[all …]
/art/runtime/
Doat_file.cc1699 : oat_file_(oat_file), in OatDexFile()
1759 const uint8_t* oat_class_pointer = oat_file_->Begin() + oat_class_offset; in GetOatClass()
1760 CHECK_LT(oat_class_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass()
1763 CHECK_LT(status_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass()
1768 CHECK_LT(type_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass()
1773 CHECK_LE(after_type_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass()
1782 CHECK_LE(bitmap_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass()
1787 CHECK_LE(methods_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass()
1790 return OatFile::OatClass(oat_file_, in GetOatClass()
1863 : oat_file_(oat_file), status_(status), type_(type), in OatClass()
[all …]
Doat_file.h251 const OatFile* const oat_file_; variable
444 if (kIsDebugBuild && oat_file_ == nullptr) { in GetOatFile()
447 return oat_file_; in GetOatFile()
532 const OatFile* const oat_file_ = nullptr; variable
/art/runtime/gc/space/
Dimage_space.h192 std::unique_ptr<OatFile> oat_file_; variable
Dimage_space.cc722 space->oat_file_ = OpenOatFile(*space, image_filename, error_msg); in Init()
723 if (space->oat_file_ == nullptr) { in Init()
727 space->oat_file_non_owned_ = space->oat_file_.get(); in Init()
734 CHECK(space->oat_file_ != nullptr); in Init()
735 if (!ImageSpace::ValidateOatFile(*space->oat_file_, error_msg)) { in Init()
1819 CHECK(oat_file_ != nullptr); in ReleaseOatFile()
1820 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()