Searched defs:oat_file_ (Results 1 - 6 of 6) sorted by relevance

/art/runtime/gc/space/
H A Dimage_space.h153 std::unique_ptr<OatFile> oat_file_; member in class:art::gc::space::ImageSpace
/art/patchoat/
H A Dpatchoat.h63 : oat_file_(oat_file), image_(nullptr), bitmap_(nullptr), heap_(nullptr), delta_(delta),
72 : oat_file_(oat_file), image_(image), bitmap_(bitmap), heap_(heap),
190 std::unique_ptr<ElfFile> oat_file_; member in class:art::PatchOat
/art/runtime/
H A Doat_file.h207 const OatFile* const oat_file_; member in class:art::FINAL::FINAL
375 return oat_file_;
412 const OatFile* const oat_file_; member in class:art::FINAL
/art/compiler/
H A Dimage_writer.h49 image_end_(0), image_objects_offset_begin_(0), image_roots_address_(0), oat_file_(nullptr),
202 DCHECK_LT(offset, oat_file_->Size());
308 OatFile* oat_file_; member in class:art::FINAL
/art/dex2oat/
H A Ddex2oat.cc1100 oat_file_.reset(OS::CreateEmptyFile(oat_unstripped_.c_str()));
1105 oat_file_.reset(new File(oat_fd_, oat_location_, true));
1106 oat_file_->DisableAutoClose();
1107 if (oat_file_->SetLength(0) != 0) {
1111 if (oat_file_.get() == nullptr) {
1115 if (create_file && fchmod(oat_file_->Fd(), 0644) != 0) {
1117 oat_file_->Erase();
1145 DCHECK(oat_file_.get() != nullptr);
1146 oat_file_->Erase();
1147 oat_file_
1869 std::unique_ptr<File> oat_file_; member in class:art::FINAL
[all...]
/art/oatdump/
H A Doatdump.cc85 explicit RodataWriter(const OatFile* oat_file) : oat_file_(oat_file) {}
88 const size_t rodata_size = oat_file_->GetOatHeader().GetExecutableOffset();
89 return out->WriteFully(oat_file_->Begin(), rodata_size);
93 const OatFile* oat_file_; member in class:art::FINAL::FINAL
98 explicit TextWriter(const OatFile* oat_file) : oat_file_(oat_file) {}
101 const size_t rodata_size = oat_file_->GetOatHeader().GetExecutableOffset();
102 const uint8_t* text_begin = oat_file_->Begin() + rodata_size;
103 return out->WriteFully(text_begin, oat_file_->End() - text_begin);
107 const OatFile* oat_file_; member in class:art::FINAL::FINAL
111 oat_file_(oat_fil
298 const OatFile* oat_file_; member in class:art::FINAL
1356 const OatFile& oat_file_; member in class:art::OatDumper
[all...]

Completed in 335 milliseconds