Searched refs:phdr (Results 1 – 3 of 3) sorted by relevance
160 for (const auto& phdr : info.phdrs) { in inspector_print_markup_context() local161 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()
85 for (const auto& phdr : mod->phdrs) { in MakeELF() local86 size = fbl::max(size, phdr.p_offset + phdr.p_filesz); in MakeELF()91 for (const auto& phdr : mod->phdrs) { in MakeELF() local92 if (phdr.p_type == PT_NOTE) { in MakeELF()93 EXPECT_TRUE(WriteBuildID(mod->build_id, mod->vmo, phdr.p_offset)); in MakeELF()
232 for (const auto& phdr : phdrs) { in ForEachModule() local233 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