Lines Matching refs:oat_rodata

696                             OutputStream* oat_rodata,  in StartRoData()  argument
701 if (!RecordOatDataOffset(oat_rodata)) { in StartRoData()
712 ChecksumUpdatingOutputStream checksum_updating_rodata(oat_rodata, this); in StartRoData()
3797 bool OatWriter::WriteTypeLookupTables(OutputStream* oat_rodata, in WriteTypeLookupTables() argument
3802 off_t actual_offset = oat_rodata->Seek(expected_offset, kSeekSet); in WriteTypeLookupTables()
3805 << " Expected: " << expected_offset << " File: " << oat_rodata->GetLocation(); in WriteTypeLookupTables()
3845 if (!oat_rodata->WriteFully(buffer.data(), padding_size)) { in WriteTypeLookupTables()
3848 << " Output: " << oat_rodata->GetLocation(); in WriteTypeLookupTables()
3854 static_cast<size_t>(oat_rodata->Seek(0u, kSeekCurrent))); in WriteTypeLookupTables()
3857 if (!oat_rodata->WriteFully(table.RawData(), table_size)) { in WriteTypeLookupTables()
3860 << " Output: " << oat_rodata->GetLocation(); in WriteTypeLookupTables()
3871 if (!oat_rodata->Flush()) { in WriteTypeLookupTables()
3873 << " File: " << oat_rodata->GetLocation(); in WriteTypeLookupTables()
3880 bool OatWriter::WriteDexLayoutSections(OutputStream* oat_rodata, in WriteDexLayoutSections() argument
3889 off_t actual_offset = oat_rodata->Seek(expected_offset, kSeekSet); in WriteDexLayoutSections()
3892 << " Expected: " << expected_offset << " File: " << oat_rodata->GetLocation(); in WriteDexLayoutSections()
3907 if (!oat_rodata->WriteFully(buffer.data(), padding_size)) { in WriteDexLayoutSections()
3910 << " Output: " << oat_rodata->GetLocation(); in WriteDexLayoutSections()
3919 static_cast<size_t>(oat_rodata->Seek(0u, kSeekCurrent))); in WriteDexLayoutSections()
3921 if (!oat_rodata->WriteFully(&oat_dex_file->dex_sections_layout_, in WriteDexLayoutSections()
3925 << " Output: " << oat_rodata->GetLocation(); in WriteDexLayoutSections()
3934 if (!oat_rodata->Flush()) { in WriteDexLayoutSections()
3936 << " File: " << oat_rodata->GetLocation(); in WriteDexLayoutSections()