Home
last modified time | relevance | path

Searched refs:vdex_out (Results 1 – 5 of 5) sorted by relevance

/art/dex2oat/linker/
Doat_writer.cc679 std::unique_ptr<BufferedOutputStream> vdex_out = in WriteAndOpenDexFiles() local
684 if (!WriteDexFiles(vdex_out.get(), vdex_file, update_input_vdex, copy_dex_files) || in WriteAndOpenDexFiles()
2533 bool OatWriter::WriteQuickeningInfo(OutputStream* vdex_out) { in WriteQuickeningInfo() argument
2544 off_t actual_offset = vdex_out->Seek(start_offset, kSeekSet); in WriteQuickeningInfo()
2548 << " Output: " << vdex_out->GetLocation(); in WriteQuickeningInfo()
2555 WriteQuickeningInfoMethodVisitor write_quicken_info_visitor(this, vdex_out); in WriteQuickeningInfo()
2557 PLOG(ERROR) << "Failed to write the vdex quickening info. File: " << vdex_out->GetLocation(); in WriteQuickeningInfo()
2567 actual_offset = vdex_out->Seek(current_offset, kSeekSet); in WriteQuickeningInfo()
2571 << " Output: " << vdex_out->GetLocation(); in WriteQuickeningInfo()
2577 vdex_out, in WriteQuickeningInfo()
[all …]
Dimage_test.h297 std::unique_ptr<BufferedOutputStream> vdex_out = in DoCompile() local
300 oat_writer->WriteVerifierDeps(vdex_out.get(), nullptr); in DoCompile()
301 oat_writer->WriteQuickeningInfo(vdex_out.get()); in DoCompile()
302 oat_writer->WriteChecksumsAndVdexHeader(vdex_out.get()); in DoCompile()
Doat_writer.h188 bool WriteQuickeningInfo(OutputStream* vdex_out);
189 bool WriteVerifierDeps(OutputStream* vdex_out, verifier::VerifierDeps* verifier_deps);
190 bool WriteChecksumsAndVdexHeader(OutputStream* vdex_out);
Doat_writer_test.cc215 std::unique_ptr<BufferedOutputStream> vdex_out = in DoWriteElf() local
217 if (!oat_writer.WriteVerifierDeps(vdex_out.get(), nullptr)) { in DoWriteElf()
220 if (!oat_writer.WriteQuickeningInfo(vdex_out.get())) { in DoWriteElf()
223 if (!oat_writer.WriteChecksumsAndVdexHeader(vdex_out.get())) { in DoWriteElf()
/art/dex2oat/
Ddex2oat.cc2288 std::unique_ptr<BufferedOutputStream> vdex_out = in WriteOutputFiles() local
2292 if (!oat_writers_[i]->WriteVerifierDeps(vdex_out.get(), verifier_deps)) { in WriteOutputFiles()
2297 if (!oat_writers_[i]->WriteQuickeningInfo(vdex_out.get())) { in WriteOutputFiles()
2303 if (!oat_writers_[i]->WriteChecksumsAndVdexHeader(vdex_out.get())) { in WriteOutputFiles()