Lines Matching refs:rodata_builder_
348 section_ptrs.push_back(&rodata_builder_.section_); in Write()
349 AssignSectionStr(&rodata_builder_, &shstrtab); in Write()
350 rodata_builder_.section_index_ = section_index++; in Write()
427 rodata_builder_.section_.sh_offset = NextOffset(rodata_builder_.section_, in Write()
429 rodata_builder_.section_.sh_addr = rodata_builder_.section_.sh_offset; in Write()
430 rodata_builder_.section_.sh_size = rodata_builder_.size_; in Write()
431 rodata_builder_.section_.sh_link = rodata_builder_.GetLink(); in Write()
434 text_builder_.section_.sh_offset = NextOffset(text_builder_.section_, rodata_builder_.section_); in Write()
438 CHECK_ALIGNED(rodata_builder_.section_.sh_offset + rodata_builder_.section_.sh_size, kPageSize); in Write()
473 LOG(INFO) << "rodata off=" << rodata_builder_.section_.sh_offset in Write()
474 << " rodata size=" << rodata_builder_.section_.sh_size; in Write()
535 Elf32_Word load_r_size = rodata_builder_.section_.sh_offset + rodata_builder_.section_.sh_size; in Write()
538 program_headers[PH_LOAD_R__].p_align = rodata_builder_.section_.sh_addralign; in Write()
581 pieces.push_back(new ElfFileRodataPiece(rodata_builder_.section_.sh_offset, oat_writer_)); in Write()
624 dynsym_builder_.AddSymbol("oatdata", &rodata_builder_, 0, true, in SetupRequiredSymbols()
625 rodata_builder_.size_, STB_GLOBAL, STT_OBJECT); in SetupRequiredSymbols()