/external/valgrind/coregrind/m_ume/ |
D | elf.c | 195 if (ph->p_flags & PF_W) prot |= VKI_PROT_WRITE; 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_() 427 != (PF_R | PF_W | PF_X)) { in VG_() 466 if ((ph->p_flags & PF_W) == 0) info->stack_prot &= ~VKI_PROT_WRITE; in VG_()
|
/external/llvm/tools/llvm-objdump/ |
D | ELFDump.cpp | 64 << ((Phdr.p_flags & ELF::PF_W) ? "w" : "-") in printProgramHeaders()
|
/external/elfutils/tests/ |
D | showptable.c | 115 putc_unlocked ((phdr->p_flags & PF_W) ? 'W' : ' ', stdout); in main()
|
D | alldts.c | 236 phdr[1].p_flags = PF_W | PF_R; in main()
|
/external/llvm/test/tools/llvm-readobj/ |
D | program-headers.test | 33 ELF-I386-NEXT: PF_W (0x2) 74 ELF-X86-64-NEXT: PF_W (0x2)
|
/external/compiler-rt/lib/lsan/ |
D | lsan_common_linux.cc | 62 if (!(phdr->p_flags & PF_W) || (phdr->p_type != PT_LOAD) || in ProcessGlobalRegionsCallback()
|
/external/elfutils/src/ |
D | ldlex.l | 261 return PF_W; in attrib_convert()
|
D | elflint.c | 1296 newp->read_only = (phdr->p_flags & PF_W) == 0; in check_reloc_shdr() 4079 segment_flags[pcnt] |= PF_W; in check_sections() 4081 && (phdr->p_flags & PF_W) == 0) in check_sections() 4195 if ((phdr->p_flags & PF_W) != 0 in check_sections() 4196 && (segment_flags[pcnt] & 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() 4612 if ((phdr->p_flags & PF_W) != 0) in check_program_header()
|
D | findtextrel.c | 346 if (phdr->p_type == PT_LOAD && (phdr->p_flags & PF_W) == 0) in process_file()
|
D | size.c | 627 (phdr->p_flags & PF_W) == 0 ? '-' : 'w', in show_segments()
|
D | readelf.c | 1276 phdr->p_flags & PF_W ? 'W' : ' ', in print_phdr() 1384 else if (phdr->p_type == PT_LOAD && (phdr->p_flags & PF_W) == 0) in print_phdr() 1411 if ((phdr2->p_flags & PF_W) == 0 && !in_ro) in print_phdr() 1416 else if ((phdr2->p_flags & PF_W) != 0 && in_ro) in print_phdr()
|
D | ldgeneric.c | 3002 if ((segment->mode & PF_W) != 0) in sort_sections_lscript() 6491 phdr->p_flags = (PF_R | PF_W in ld_generic_create_outfile()
|
D | ChangeLog | 2204 that matches its PT_LOAD's p_flags &~ PF_W. On sparc, PF_X really
|
/external/kernel-headers/original/uapi/linux/ |
D | elf.h | 240 #define PF_W 0x2 macro
|
/external/llvm/include/llvm/Support/ |
D | ELF.h | 1033 PF_W = 2, // Write enumerator
|
/external/google-breakpad/src/tools/linux/md2core/ |
D | minidump-2-core.cc | 562 mapping.permissions |= PF_W; in ParseMaps() 889 mapping.permissions = PF_R | PF_W; in AddDataToMapping()
|
/external/valgrind/coregrind/m_debuginfo/ |
D | readelf.c | 1684 a_phdr.p_flags & PF_W ? 'w' : '-', in ML_() 1708 && (a_phdr.p_flags & (PF_R | PF_W)) in ML_() 1709 == (PF_R | PF_W)) { in ML_()
|
/external/valgrind/coregrind/m_coredump/ |
D | coredump-elf.c | 131 phdr->p_flags |= PF_W; in fill_phdr()
|
D | coredump-solaris.c | 435 phdr->p_flags |= PF_W; in fill_phdr()
|
/external/valgrind/include/vki/ |
D | vki-solaris.h | 410 #define VKI_PF_W PF_W
|
/external/elfutils/libelf/ |
D | elf.h | 623 #define PF_W (1 << 1) /* Segment is writable */ macro
|
/external/llvm/tools/llvm-readobj/ |
D | ELFDumper.cpp | 855 LLVM_READOBJ_ENUM_ENT(ELF, PF_W),
|
/external/valgrind/perf/ |
D | tinycc.c | 578 #define PF_W (1 << 1) /* Segment is writable */ macro 19501 ph->p_flags = PF_R | PF_W; in tcc_output_file() 19608 ph->p_flags = PF_R | PF_W; in tcc_output_file()
|