Home
last modified time | relevance | path

Searched refs:oat_contents (Results 1 – 4 of 4) sorted by relevance

/art/compiler/
Delf_writer_mclinker.cc68 std::vector<uint8_t> oat_contents; in Write() local
69 oat_contents.reserve(oat_writer->GetSize()); in Write()
70 VectorOutputStream output_stream("oat contents", oat_contents); in Write()
72 CHECK_EQ(oat_writer->GetSize(), oat_contents.size()); in Write()
75 AddOatInput(oat_contents); in Write()
83 oat_contents.clear(); in Write()
159 void ElfWriterMclinker::AddOatInput(std::vector<uint8_t>& oat_contents) { in AddOatInput() argument
162 …std::unique_ptr<OatFile> oat_file(OatFile::OpenMemory(oat_contents, elf_file_->GetPath(), &error_m… in AddOatInput()
Delf_writer_mclinker.h64 void AddOatInput(std::vector<uint8_t>& oat_contents);
/art/runtime/
Doat_file.cc56 OatFile* OatFile::OpenMemory(std::vector<uint8_t>& oat_contents, in OpenMemory() argument
59 CHECK(!oat_contents.empty()) << location; in OpenMemory()
62 oat_file->begin_ = &oat_contents[0]; in OpenMemory()
63 oat_file->end_ = &oat_contents[oat_contents.size()]; in OpenMemory()
Doat_file.h66 static OatFile* OpenMemory(std::vector<uint8_t>& oat_contents,