Home
last modified time | relevance | path

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

/aosp12/art/runtime/
H A Delf_file.cc1437 Elf_Shdr* old_sh = GetSectionHeader(section_headers_original_indexes[i]); in Strip() local
1438 CHECK(old_sh != nullptr); in Strip()
1439 CHECK_EQ(new_sh.sh_name, old_sh->sh_name); in Strip()
1440 if (old_sh->sh_addralign > 1) { in Strip()
1441 offset = RoundUp(offset, old_sh->sh_addralign); in Strip()
1443 if (old_sh->sh_offset == offset) { in Strip()
1445 offset += old_sh->sh_size; in Strip()
1450 Begin() + old_sh->sh_offset, in Strip()
1451 old_sh->sh_size); in Strip()
1453 offset += old_sh->sh_size; in Strip()