Home
last modified time | relevance | path

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

/system/ulib/inspector/
A Ddso-list.cpp160 for (const auto& phdr : info.phdrs) { in inspector_print_markup_context() local
161 if (phdr.p_type != PT_LOAD) { in inspector_print_markup_context()
164 uintptr_t start = phdr.p_vaddr & -PAGE_SIZE; in inspector_print_markup_context()
165 uintptr_t end = (phdr.p_vaddr + phdr.p_memsz + PAGE_SIZE - 1) & -PAGE_SIZE; in inspector_print_markup_context()
167 if (phdr.p_flags & PF_R) { in inspector_print_markup_context()
170 if (phdr.p_flags & PF_W) { in inspector_print_markup_context()
173 if (phdr.p_flags & PF_X) { in inspector_print_markup_context()
/system/utest/elf-search/
A Delf-search-test.cpp85 for (const auto& phdr : mod->phdrs) { in MakeELF() local
86 size = fbl::max(size, phdr.p_offset + phdr.p_filesz); in MakeELF()
91 for (const auto& phdr : mod->phdrs) { in MakeELF() local
92 if (phdr.p_type == PT_NOTE) { in MakeELF()
93 EXPECT_TRUE(WriteBuildID(mod->build_id, mod->vmo, phdr.p_offset)); in MakeELF()
/system/ulib/elf-search/
A Delf-search.cpp232 for (const auto& phdr : phdrs) { in ForEachModule() local
233 if (phdr.p_type == PT_NOTE) { in ForEachModule()
235 status = GetBuildID(&reader, map.base, phdr, build_id_buf, &size); in ForEachModule()

Completed in 8 milliseconds