Lines Matching refs:GetAddress

160     Elf_Addr GetAddress() const {  in GetAddress()  function
370 DCHECK_LE(section->GetAddress(), sym.st_value); in Add()
371 DCHECK_LE(sym.st_value, section->GetAddress() + section->header_.sh_size); in Add()
657 dynsym_.Add(oatdata, &rodata_, rodata_.GetAddress(), rodata_size, STB_GLOBAL, STT_OBJECT); in PrepareDynamicSection()
662 dynsym_.Add(oatexec, &text_, text_.GetAddress(), /* size= */ 0, STB_GLOBAL, STT_OBJECT); in PrepareDynamicSection()
664 Elf_Word oatlastword_address = text_.GetAddress() + text_size - 4; in PrepareDynamicSection()
669 Elf_Word oatlastword_address = rodata_.GetAddress() + rodata_size - 4; in PrepareDynamicSection()
676 data_bimg_rel_ro_.GetAddress(), in PrepareDynamicSection()
682 data_bimg_rel_ro_.GetAddress() + data_bimg_rel_ro_size - 4; in PrepareDynamicSection()
693 dynsym_.Add(oatbss, &bss_, bss_.GetAddress(), bss_roots_offset, STB_GLOBAL, STT_OBJECT); in PrepareDynamicSection()
698 Elf_Word bss_methods_address = bss_.GetAddress() + bss_methods_offset; in PrepareDynamicSection()
706 Elf_Word bss_roots_address = bss_.GetAddress() + bss_roots_offset; in PrepareDynamicSection()
713 Elf_Word bsslastword_address = bss_.GetAddress() + bss_size - 4; in PrepareDynamicSection()
718 dynsym_.Add(oatdex, &dex_, dex_.GetAddress(), /* size= */ 0, STB_GLOBAL, STT_OBJECT); in PrepareDynamicSection()
720 Elf_Word oatdexlastword_address = dex_.GetAddress() + dex_size - 4; in PrepareDynamicSection()
749 { .d_tag = DT_HASH, .d_un = { .d_ptr = hash_.GetAddress() }, }, in PrepareDynamicSection()
750 { .d_tag = DT_STRTAB, .d_un = { .d_ptr = dynstr_.GetAddress() }, }, in PrepareDynamicSection()
751 { .d_tag = DT_SYMTAB, .d_un = { .d_ptr = dynsym_.GetAddress() }, }, in PrepareDynamicSection()