Searched defs:oat_contents (Results 1 - 2 of 2) sorted by relevance

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

Completed in 139 milliseconds