Home
last modified time | relevance | path

Searched refs:p_flags (Results 1 – 25 of 45) sorted by relevance

12

/external/libunwind/src/coredump/
D_UCD_create.c167 cur->p_flags = hdr64.p_flags ; in _UCD_create()
193 cur->p_flags = hdr32.p_flags ; in _UCD_create()
259 cur->p_flags in _UCD_create()
263 if (cur->p_flags & PF_X) in _UCD_create()
340 if (phdr->p_flags != (PF_X | PF_R)) in _UCD_add_backing_file_at_segment()
341 Debug(1, "Note: phdr[%u] is not r-x: flags are 0x%x\n", phdr_no, phdr->p_flags); in _UCD_add_backing_file_at_segment()
D_UCD_internal.h63 uint32_t p_flags; member
/external/llvm/tools/llvm-objdump/
DELFDump.cpp63 << ((Phdr.p_flags & ELF::PF_R) ? "r" : "-") in printProgramHeaders()
64 << ((Phdr.p_flags & ELF::PF_W) ? "w" : "-") in printProgramHeaders()
65 << ((Phdr.p_flags & ELF::PF_X) ? "x" : "-") << "\n"; in printProgramHeaders()
/external/valgrind/coregrind/m_ume/
Delf.c194 if (ph->p_flags & PF_X) prot |= VKI_PROT_EXEC; in mapelf()
195 if (ph->p_flags & PF_W) prot |= VKI_PROT_WRITE; in mapelf()
196 if (ph->p_flags & PF_R) prot |= VKI_PROT_READ; in mapelf()
386 (ph->p_flags & (PF_R | PF_W | PF_X)) != (PF_R | PF_W | PF_X)) { in VG_()
426 (iph->p_flags & (PF_R | PF_W | PF_X)) in VG_()
465 if ((ph->p_flags & PF_X) == 0) info->stack_prot &= ~VKI_PROT_EXEC; in VG_()
466 if ((ph->p_flags & PF_W) == 0) info->stack_prot &= ~VKI_PROT_WRITE; in VG_()
467 if ((ph->p_flags & PF_R) == 0) info->stack_prot &= ~VKI_PROT_READ; in VG_()
/external/elfutils/tests/
Dshowptable.c114 putc_unlocked ((phdr->p_flags & PF_X) ? 'X' : ' ', stdout); in main()
115 putc_unlocked ((phdr->p_flags & PF_W) ? 'W' : ' ', stdout); in main()
116 putc_unlocked ((phdr->p_flags & PF_R) ? 'R' : ' ', stdout); in main()
Dalldts.c231 phdr[0].p_flags = PF_R | PF_X; in main()
236 phdr[1].p_flags = PF_W | PF_R; in main()
Dupdate2.c114 phdr[0].p_flags = PF_R | PF_X; in main()
Dupdate3.c163 phdr[0].p_flags = PF_R | PF_X; in main()
/external/minijail/
Delfparse.h76 Elf32_Word p_flags; /* Segment flags */ member
83 Elf64_Word p_flags; /* Segment flags */ member
/external/elfutils/libelf/
Delf32_getphdr.c168 CONVERT_TO (phdr[cnt].p_flags, notcvt[cnt].p_flags); in ElfW2()
218 CONVERT (phdr[cnt].p_flags); in ElfW2()
Dgelf_getphdr.c100 COPY (p_flags); in gelf_getphdr()
Dgelf_update_phdr.c104 COPY (p_flags); in gelf_update_phdr()
Dabstract.h65 TYPE_NAME (ElfW2(32, Ext##Word), p_flags) \
71 TYPE_NAME (ElfW2(64, Ext##Word), p_flags) \
/external/syslinux/gpxe/src/include/
Delf.h215 Elf32_Word p_flags; /* Access permission flags. */ member
221 Elf64_Word p_flags; /* Access permission flags. */ member
/external/kernel-headers/original/uapi/linux/
Delf.h250 Elf32_Word p_flags; member
256 Elf64_Word p_flags; member
/external/elfutils/src/
Dsize.c626 (phdr->p_flags & PF_R) == 0 ? '-' : 'r', in show_segments()
627 (phdr->p_flags & PF_W) == 0 ? '-' : 'w', in show_segments()
628 (phdr->p_flags & PF_X) == 0 ? '-' : 'x'); in show_segments()
Delflint.c1296 newp->read_only = (phdr->p_flags & PF_W) == 0; in check_reloc_shdr()
4071 if ((phdr->p_flags & PF_X) == 0) in check_sections()
4081 && (phdr->p_flags & PF_W) == 0) in check_sections()
4189 if ((phdr->p_flags & PF_X) != 0 in check_sections()
4195 if ((phdr->p_flags & PF_W) != 0 in check_sections()
4500 if ((phdr2->p_flags & PF_W) == 0) in check_program_header()
4510 if ((phdr2->p_flags & ~PF_W) in check_program_header()
4511 != (phdr->p_flags & ~PF_W)) in check_program_header()
4518 if ((phdr->p_flags & ~phdr2->p_flags) != 0) in check_program_header()
4605 if ((phdr->p_flags & PF_R) == 0) in check_program_header()
[all …]
/external/syslinux/com32/include/sys/
Delf32.h87 Elf32_Word p_flags; member
Delf64.h82 Elf64_Word p_flags; member
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_freebsd.h111 __uint32_t p_flags; member
/external/valgrind/coregrind/m_coredump/
Dcoredump-elf.c126 phdr->p_flags = 0; in fill_phdr()
129 phdr->p_flags |= PF_R; in fill_phdr()
131 phdr->p_flags |= PF_W; in fill_phdr()
133 phdr->p_flags |= PF_X; in fill_phdr()
681 phdrs[0].p_flags = 0; in make_elf_coredump()
Dcoredump-solaris.c430 phdr->p_flags = 0; in fill_phdr()
433 phdr->p_flags |= PF_R; in fill_phdr()
435 phdr->p_flags |= PF_W; in fill_phdr()
437 phdr->p_flags |= PF_X; in fill_phdr()
835 phdr->p_flags = PF_R; in fill_notes_phdr()
/external/compiler-rt/lib/lsan/
Dlsan_common_linux.cc65 if (!(phdr->p_flags & PF_W) || (phdr->p_type != PT_LOAD) || in ProcessGlobalRegionsCallback()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DELF.h963 Elf32_Word p_flags; // Segment flags member
970 Elf64_Word p_flags; // Segment flags member
/external/llvm/include/llvm/Support/
DELF.h996 Elf32_Word p_flags; // Segment flags member
1003 Elf64_Word p_flags; // Segment flags member

12