/third_party/elfio/examples/writer/ |
D | writer.cpp | 82 text_seg->set_flags( PF_X | PF_R ); in main() 106 data_seg->set_flags( PF_W | PF_R ); in main()
|
/third_party/elfio/tests/ |
D | ELFIOTest.cpp | 236 PF_R + PF_X, 4 ); in BOOST_AUTO_TEST_CASE() 240 PF_R + PF_W, 4 ); in BOOST_AUTO_TEST_CASE() 243 checkSegment( seg, 0x6474E551, 0x0, 0x0, 0x0, 0x0, PF_R + PF_W, 4 ); in BOOST_AUTO_TEST_CASE() 341 0x00000000000001c0, 0x00000000000001c0, PF_R + PF_X, 8 ); in BOOST_AUTO_TEST_CASE() 345 0x000000000000066c, 0x000000000000066c, PF_R + PF_X, in BOOST_AUTO_TEST_CASE() 349 checkSegment( seg, 0x6474E551, 0x0, 0x0, 0x0, 0x0, PF_R + PF_W, 8 ); in BOOST_AUTO_TEST_CASE() 633 PF_R + PF_X, 4 ); in BOOST_AUTO_TEST_CASE() 637 PF_R + PF_X, 0x10000 ); in BOOST_AUTO_TEST_CASE() 640 checkSegment( seg, 0x6474E551, 0x0, 0x0, 0x0, 0x0, PF_R + PF_W, 0x4 ); in BOOST_AUTO_TEST_CASE()
|
D | ELFIOTest1.cpp | 175 text_seg->set_flags( PF_X | PF_R ); in write_exe_i386() 196 data_seg->set_flags( PF_W | PF_R ); in write_exe_i386() 556 text_seg->set_flags( PF_X | PF_R ); in BOOST_AUTO_TEST_CASE()
|
/third_party/libunwind/src/coredump/ |
D | _UCD_create.c | 284 if (phdr->p_flags != (PF_X | PF_R)) in _UCD_add_backing_file_at_segment()
|
/third_party/musl/porting/liteos_a/user/ldso/ |
D | dynlink.c | 553 if ((ph->p_flags&(PF_R|PF_W))!=(PF_R|PF_W)) continue; in reclaim_gaps() 665 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) | in map_library() 681 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) | in map_library() 754 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) | in map_library() 757 if ((ph->p_flags & PF_R) && (ph->p_flags & PF_X) && (!(ph->p_flags & PF_W))) { in map_library()
|
/third_party/musl/porting/liteos_a/user_debug/ldso/ |
D | dynlink.c | 553 if ((ph->p_flags&(PF_R|PF_W))!=(PF_R|PF_W)) continue; in reclaim_gaps() 665 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) | in map_library() 681 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) | in map_library() 754 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) | in map_library() 757 if ((ph->p_flags & PF_R) && (ph->p_flags & PF_X) && (!(ph->p_flags & PF_W))) { in map_library()
|
/third_party/libunwind/include/mingw/ |
D | freebsd-elf_common.h | 274 #define PF_R 0x4 /* Readable. */ macro
|
/third_party/libunwind/include/win/ |
D | freebsd-elf_common.h | 274 #define PF_R 0x4 /* Readable. */ macro
|
/third_party/abseil-cpp/absl/debugging/ |
D | symbolize_test.cc | 277 info->dlpi_phdr[i].p_flags == (PF_R | PF_X)) { in FilterElfHeader()
|
D | symbolize_elf.inc | 1293 constexpr int rx = PF_X | PF_R;
|
/third_party/musl/ldso/ |
D | dynlink.c | 555 if ((ph->p_flags&(PF_R|PF_W))!=(PF_R|PF_W)) continue; in reclaim_gaps() 667 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) | in map_library() 683 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) | in map_library() 756 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) | in map_library()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/ |
D | symbolize_test.cc | 291 info->dlpi_phdr[i].p_flags == (PF_R | PF_X)) { in FilterElfHeader()
|
D | symbolize_elf.inc | 1303 constexpr int rx = PF_X | PF_R;
|
/third_party/elfio/elfio/ |
D | elf_types.hpp | 660 #define PF_R 4 // Read macro
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | ELF.h | 1064 PF_R = 4, // Read enumerator
|
/third_party/musl/porting/linux/user/ldso/ |
D | dynlink.c | 1190 if ((ph->p_flags&(PF_R|PF_W))!=(PF_R|PF_W)) continue; in reclaim_gaps() 1350 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) | in map_library() 1366 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) | in map_library() 1458 prot = (((ph->p_flags&PF_R) ? PROT_READ : 0) | in map_library() 4351 prot = (((ph->p_flags & PF_R) ? PROT_READ : 0) | in task_map_library() 4373 prot = (((ph->p_flags & PF_R) ? PROT_READ : 0) | in task_map_library() 4467 prot = (((ph->p_flags & PF_R) ? PROT_READ : 0) | in task_map_library()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
D | ELF.h | 1227 PF_R = 4, // Read enumerator
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/ |
D | elf.h | 620 #define PF_R (1 << 2) macro
|
/third_party/musl/porting/linux/user/include/ |
D | elf.h | 622 #define PF_R (1 << 2) macro
|
/third_party/musl/ndk_musl_include/ |
D | elf.h | 620 #define PF_R (1 << 2) macro
|
/third_party/musl/include/ |
D | elf.h | 620 #define PF_R (1 << 2) macro
|
/third_party/musl/porting/liteos_m/kernel/include/ |
D | elf.h | 620 #define PF_R (1 << 2) macro
|
/third_party/musl/porting/uniproton/kernel/include/ |
D | elf.h | 620 #define PF_R (1 << 2) macro
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | ELFYAML.cpp | 511 BCase(PF_R); in bitset()
|