Searched refs:OatWriter (Results 1 – 7 of 7) sorted by relevance
/art/compiler/ |
D | oat_writer.cc | 107 class OatWriter::DexFileSource { 166 class OatWriter::OatClassHeader { 186 bool Write(OatWriter* oat_writer, OutputStream* out, const size_t file_offset) const; 206 class OatWriter::OatClass { 213 bool Write(OatWriter* oat_writer, OutputStream* out) const; 254 class OatWriter::OatDexFile { 266 bool Write(OatWriter* oat_writer, OutputStream* out) const; 267 bool WriteClassOffsets(OatWriter* oat_writer, OutputStream* out); 314 OatWriter::OatWriter(bool compiling_boot_image, TimingLogger* timings, ProfileCompilationInfo* info) in OatWriter() function in art::OatWriter 390 bool OatWriter::AddDexFileSource(const char* filename, in AddDexFileSource() [all …]
|
D | oat_writer.h | 108 class OatWriter { 116 OatWriter(bool compiling_boot_image, TimingLogger* timings, ProfileCompilationInfo* info); 232 ~OatWriter(); 483 DISALLOW_COPY_AND_ASSIGN(OatWriter);
|
D | compiler.h | 39 class OatWriter; variable
|
D | image_test.h | 240 std::vector<std::unique_ptr<OatWriter>> oat_writers; in Compile() 247 oat_writers.emplace_back(new OatWriter(/*compiling_boot_image*/true, in Compile() 306 OatWriter* const oat_writer = oat_writers[i].get(); in Compile()
|
D | oat_test.cc | 133 OatWriter oat_writer(/*compiling_boot_image*/false, in WriteElf() 156 OatWriter oat_writer(/*compiling_boot_image*/false, &timings, profile_compilation_info); in WriteElf() 172 OatWriter oat_writer(/*compiling_boot_image*/false, in WriteElf() 183 OatWriter& oat_writer, in DoWriteElf()
|
/art/dex2oat/ |
D | dex2oat.cc | 2046 std::unique_ptr<OatWriter>& oat_writer = oat_writers_[i]; in WriteOutputFiles() 2083 std::unique_ptr<OatWriter>& oat_writer = oat_writers_[i]; in WriteOutputFiles() 2117 std::unique_ptr<OatWriter>& oat_writer = oat_writers_[i]; in WriteOutputFiles() 2539 oat_writers_.emplace_back(new OatWriter( in CreateOatWriters() 2905 std::vector<std::unique_ptr<OatWriter>> oat_writers_;
|
/art/runtime/ |
D | dex_file.h | 1237 friend class OatWriter; variable
|