Searched refs:oat_contents (Results 1 – 4 of 4) sorted by relevance
68 std::vector<uint8_t> oat_contents; in Write() local69 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() argument162 …std::unique_ptr<OatFile> oat_file(OatFile::OpenMemory(oat_contents, elf_file_->GetPath(), &error_m… in AddOatInput()
64 void AddOatInput(std::vector<uint8_t>& oat_contents);
56 OatFile* OatFile::OpenMemory(std::vector<uint8_t>& oat_contents, in OpenMemory() argument59 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()
66 static OatFile* OpenMemory(std::vector<uint8_t>& oat_contents,