Searched defs:phdr2 (Results 1 - 3 of 3) sorted by relevance

/external/elfutils/0.153/src/
H A Delfcmp.c606 GElf_Phdr *phdr2 = gelf_getphdr (elf2, ndx, &phdr2_mem); local
612 if (unlikely (memcmp (phdr1, phdr2, sizeof (GElf_Phdr)) != 0))
H A Delflint.c4171 GElf_Phdr *phdr2; local
4173 phdr2 = gelf_getphdr (ebl->elf, inner, &phdr2_mem);
4174 if (phdr2 == NULL)
4177 if (phdr2->p_type == PT_LOAD
4178 && phdr->p_vaddr >= phdr2->p_vaddr
4180 <= phdr2->p_vaddr + phdr2->p_memsz))
4182 if ((phdr2->p_flags & PF_W) == 0)
4185 if ((phdr2->p_flags & ~PF_W) != (phdr->p_flags & ~PF_W))
4205 GElf_Phdr *phdr2; local
[all...]
H A Dreadelf.c1114 GElf_Phdr *phdr2 = NULL; local
1118 phdr2 = gelf_getphdr (ebl->elf, cnt2, &phdr2_mem);
1120 if (phdr2 != NULL && phdr2->p_type == PT_LOAD
1121 && shdr->sh_addr >= phdr2->p_vaddr
1123 <= phdr2->p_vaddr + phdr2->p_memsz))
1129 if ((phdr2->p_flags & PF_W) == 0 && !in_ro)
1134 else if ((phdr2->p_flags & PF_W) != 0 && in_ro)

Completed in 418 milliseconds