Searched refs:oat_file_ (Results 1 – 6 of 6) sorted by relevance
/art/runtime/ |
D | oat_file.cc | 1381 : oat_file_(oat_file), in OatDexFile() 1434 const uint8_t* oat_class_pointer = oat_file_->Begin() + oat_class_offset; in GetOatClass() 1435 CHECK_LT(oat_class_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass() 1438 CHECK_LT(status_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass() 1444 CHECK_LT(type_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass() 1449 CHECK_LE(after_type_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass() 1458 CHECK_LE(bitmap_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass() 1463 CHECK_LE(methods_pointer, oat_file_->End()) << oat_file_->GetLocation(); in GetOatClass() 1466 return OatFile::OatClass(oat_file_, in GetOatClass() 1527 : oat_file_(oat_file), status_(status), type_(type), in OatClass() [all …]
|
D | oat_file.h | 226 const OatFile* const oat_file_; variable 397 if (kIsDebugBuild && oat_file_ == nullptr) { in GetOatFile() 400 return oat_file_; in GetOatFile() 480 const OatFile* const oat_file_ = nullptr; variable
|
/art/oatdump/ |
D | oatdump.cc | 119 oat_file_(oat_file), in OatSymbolizer() 126 const InstructionSet isa = oat_file_->GetOatHeader().GetInstructionSet(); in Symbolize() 128 isa, oat_file_->GetOatHeader().GetInstructionSetFeaturesBitmap()); in Symbolize() 144 const uint8_t* rodata_begin = oat_file_->Begin(); in Symbolize() 145 const size_t rodata_size = oat_file_->GetOatHeader().GetExecutableOffset(); in Symbolize() 154 const uint8_t* text_begin = oat_file_->Begin() + rodata_size; in Symbolize() 155 const size_t text_size = oat_file_->End() - text_begin; in Symbolize() 164 if (oat_file_->BssSize() != 0) { in Symbolize() 165 bss->WriteNoBitsSection(oat_file_->BssSize()); in Symbolize() 174 oat_file_->BssSize(), in Symbolize() [all …]
|
/art/runtime/gc/space/ |
D | image_space.h | 192 std::unique_ptr<OatFile> oat_file_; variable
|
D | image_space.cc | 688 space->oat_file_ = OpenOatFile(*space, image_filename, error_msg); in Init() 689 if (space->oat_file_ == nullptr) { in Init() 693 space->oat_file_non_owned_ = space->oat_file_.get(); in Init() 700 CHECK(space->oat_file_ != nullptr); in Init() 701 if (!ImageSpace::ValidateOatFile(*space->oat_file_, error_msg)) { in Init() 1758 CHECK(oat_file_ != nullptr); in ReleaseOatFile() 1759 return std::move(oat_file_); in ReleaseOatFile()
|
/art/runtime/gc/collector/ |
D | immune_spaces_test.cc | 53 oat_file_ = std::move(oat_file); in DummyImageSpace() 54 oat_file_non_owned_ = oat_file_.get(); in DummyImageSpace()
|