/external/libunwind/src/coredump/ |
D | _UCD_create.c | 167 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.h | 63 uint32_t p_flags; member
|
/external/llvm/tools/llvm-objdump/ |
D | ELFDump.cpp | 63 << ((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/elfutils/tests/ |
D | showptable.c | 114 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()
|
D | alldts.c | 231 phdr[0].p_flags = PF_R | PF_X; in main() 236 phdr[1].p_flags = PF_W | PF_R; in main()
|
D | update2.c | 114 phdr[0].p_flags = PF_R | PF_X; in main()
|
D | update3.c | 163 phdr[0].p_flags = PF_R | PF_X; in main()
|
/external/python/cpython2/Parser/ |
D | parser.c | 83 ps->p_flags = 0; in PyParser_New() 152 if (ps->p_flags & CO_FUTURE_PRINT_FUNCTION && in classify() 208 ps->p_flags |= CO_FUTURE_WITH_STATEMENT; in future_hack() 210 ps->p_flags |= CO_FUTURE_PRINT_FUNCTION; in future_hack() 212 ps->p_flags |= CO_FUTURE_UNICODE_LITERALS; in future_hack()
|
D | parsetok.c | 144 ps->p_flags |= CO_FUTURE_PRINT_FUNCTION; in parsetok() 147 ps->p_flags |= CO_FUTURE_UNICODE_LITERALS; in parsetok() 216 *flags = ps->p_flags; in parsetok()
|
D | parser.h | 29 unsigned long p_flags; /* see co_flags in Include/code.h */ member
|
/external/minijail/ |
D | elfparse.h | 76 Elf32_Word p_flags; /* Segment flags */ member 83 Elf64_Word p_flags; /* Segment flags */ member
|
/external/valgrind/coregrind/m_ume/ |
D | elf.c | 430 if (ph->p_flags & PF_X) prot |= VKI_PROT_EXEC; in mapelf() 431 if (ph->p_flags & PF_W) prot |= VKI_PROT_WRITE; in mapelf() 432 if (ph->p_flags & PF_R) prot |= VKI_PROT_READ; in mapelf() 629 if ((ph->p_flags & (PF_R | PF_W | PF_X)) != PT_SUNWDTRACE_PROTECTION) { in VG_() 672 if ((iph->p_flags & (PF_R | PF_W | PF_X)) in VG_() 721 if ((ph->p_flags & PF_X) == 0) info->stack_prot &= ~VKI_PROT_EXEC; in VG_() 722 if ((ph->p_flags & PF_W) == 0) info->stack_prot &= ~VKI_PROT_WRITE; in VG_() 723 if ((ph->p_flags & PF_R) == 0) info->stack_prot &= ~VKI_PROT_READ; in VG_()
|
/external/elfutils/libelf/ |
D | elf32_getphdr.c | 168 CONVERT_TO (phdr[cnt].p_flags, notcvt[cnt].p_flags); in ElfW2() 218 CONVERT (phdr[cnt].p_flags); in ElfW2()
|
D | gelf_getphdr.c | 100 COPY (p_flags); in gelf_getphdr()
|
D | gelf_update_phdr.c | 104 COPY (p_flags); in gelf_update_phdr()
|
/external/syslinux/gpxe/src/include/ |
D | elf.h | 215 Elf32_Word p_flags; /* Access permission flags. */ member 221 Elf64_Word p_flags; /* Access permission flags. */ member
|
/external/kernel-headers/original/uapi/linux/ |
D | elf.h | 250 Elf32_Word p_flags; member 256 Elf64_Word p_flags; member
|
/external/elfutils/src/ |
D | size.c | 626 (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()
|
/external/syslinux/com32/include/sys/ |
D | elf64.h | 82 Elf64_Word p_flags; member
|
D | elf32.h | 87 Elf32_Word p_flags; member
|
/external/valgrind/coregrind/m_coredump/ |
D | coredump-elf.c | 126 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() 686 phdrs[0].p_flags = 0; in make_elf_coredump()
|
D | coredump-solaris.c | 430 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/sanitizer_common/ |
D | sanitizer_freebsd.h | 111 __uint32_t p_flags; member
|
/external/compiler-rt/lib/lsan/ |
D | lsan_common_linux.cc | 65 if (!(phdr->p_flags & PF_W) || (phdr->p_type != PT_LOAD) || in ProcessGlobalRegionsCallback()
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | ELF.h | 963 Elf32_Word p_flags; // Segment flags member 970 Elf64_Word p_flags; // Segment flags member
|