Searched refs:PF_W (Results 1 - 25 of 26) sorted by relevance

12

/external/llvm/tools/llvm-objdump/
H A DELFDump.cpp71 << ((pi->p_flags & ELF::PF_W) ? "w" : "-")
/external/chromium_org/components/nacl/loader/nonsfi/
H A Delf_loader.cc108 ((pflags & PF_W) ? PROT_WRITE : 0);
115 ((pflags & PF_W) ? NACL_ABI_PROT_WRITE : 0);
216 if ((phdr.p_flags & PF_W) && seg_file_end_offset > 0) {
/external/compiler-rt/lib/lsan/
H A Dlsan_common_linux.cc62 if (!(phdr->p_flags & PF_W) || (phdr->p_type != PT_LOAD) ||
/external/chromium_org/third_party/android_crazy_linker/src/src/
H A Dlinker_phdr.cpp129 MAYBE_MAP_FLAG((x), PF_W, PROT_WRITE))
193 if (phdr->p_type != PT_LOAD || (phdr->p_flags & PF_W) != 0)
H A Dcrazy_linker_elf_loader.cpp22 MAYBE_MAP_FLAG((x), PF_W, PROT_WRITE))
328 if ((phdr->p_flags & PF_W) != 0 && PAGE_OFFSET(seg_file_end) > 0) {
H A Dcrazy_linker_shared_library.cpp293 if (view_.dynamic_flags() & PF_W) {
/external/elfutils/0.153/src/
H A Dldlex.l269 return PF_W;
H A Dfindtextrel.c348 if (phdr->p_type == PT_LOAD && (phdr->p_flags & PF_W) == 0)
H A Delflint.c1252 newp->read_only = (phdr->p_flags & PF_W) == 0;
3761 segment_flags[pcnt] |= PF_W;
3763 && (phdr->p_flags & PF_W) == 0)
3877 if ((phdr->p_flags & PF_W) != 0
3878 && (segment_flags[pcnt] & PF_W) == 0)
4182 if ((phdr2->p_flags & PF_W) == 0)
4185 if ((phdr2->p_flags & ~PF_W) != (phdr->p_flags & ~PF_W))
4277 if ((phdr->p_flags & PF_W) != 0)
H A Dsize.c651 (phdr->p_flags & PF_W) == 0 ? '-' : 'w',
H A Dldlex.c2840 return PF_W;
H A Dreadelf.c1011 phdr->p_flags & PF_W ? 'W' : ' ',
1102 else if (phdr->p_type == PT_LOAD && (phdr->p_flags & PF_W) == 0)
1129 if ((phdr2->p_flags & PF_W) == 0 && !in_ro)
1134 else if ((phdr2->p_flags & PF_W) != 0 && in_ro)
H A Dldgeneric.c3010 if ((segment->mode & PF_W) != 0)
6499 phdr->p_flags = (PF_R | PF_W
/external/valgrind/main/coregrind/m_ume/
H A Delf.c192 if (ph->p_flags & PF_W) prot |= VKI_PROT_WRITE;
419 if ((ph->p_flags & PF_W) == 0) info->stack_prot &= ~VKI_PROT_WRITE;
/external/chromium_org/third_party/libvpx/include/
H A Delf.h265 #define PF_W 0x2 macro
/external/kernel-headers/original/uapi/linux/
H A Delf.h240 #define PF_W 0x2 macro
/external/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp1665 << (((p_flags & PF_X) && (p_flags & PF_W)) ? '+' : ' ')
1666 << ((p_flags & PF_W) ? "PF_W" : " ")
1667 << (((p_flags & PF_W) && (p_flags & PF_R)) ? '+' : ' ')
/external/chromium_org/tools/relocation_packer/src/
H A Delf_file.cc380 program_header->p_flags == (PF_R | PF_W) &&
688 spliced_header->p_flags = PF_R | PF_W;
/external/valgrind/main/coregrind/m_debuginfo/
H A Dreadelf.c1620 a_phdr.p_flags & PF_W ? 'w' : '-',
1643 && (a_phdr.p_flags & (PF_R | PF_W))
1644 == (PF_R | PF_W)) {
/external/qemu/include/
H A Delf.h1286 #define PF_W 0x2 macro
/external/valgrind/main/coregrind/m_coredump/
H A Dcoredump-elf.c132 phdr->p_flags |= PF_W;
/external/llvm/include/llvm/Support/
H A DELF.h1627 PF_W = 2, // Write
/external/llvm/tools/llvm-readobj/
H A DELFDumper.cpp495 LLVM_READOBJ_ENUM_ENT(ELF, PF_W),
/external/elfutils/0.153/libelf/
H A Delf.h598 #define PF_W (1 << 1) /* Segment is writable */ macro
/external/valgrind/main/perf/
H A Dtinycc.c578 #define PF_W (1 << 1) /* Segment is writable */ macro
19503 ph->p_flags = PF_R | PF_W;
19610 ph->p_flags = PF_R | PF_W;

Completed in 3352 milliseconds

12