/freebsd/usr.sbin/btxld/ |
H A D | elfh.c | 69 htole32(PF_R | PF_X), /* p_flags */ 79 htole32(PF_R | PF_W), /* p_flags */
|
/freebsd/contrib/llvm-project/lld/ELF/ |
H A D | Writer.cpp | 1928 addPhdrForSection(part, SHT_ARM_EXIDX, PT_ARM_EXIDX, PF_R); in finalizeSections() 1932 addPhdrForSection(part, SHT_MIPS_REGINFO, PT_MIPS_REGINFO, PF_R); in finalizeSections() 1933 addPhdrForSection(part, SHT_MIPS_OPTIONS, PT_MIPS_OPTIONS, PF_R); in finalizeSections() 1934 addPhdrForSection(part, SHT_MIPS_ABIFLAGS, PT_MIPS_ABIFLAGS, PF_R); in finalizeSections() 1938 PF_R); in finalizeSections() 2148 return PF_R | PF_W | PF_X; in computeFlags() 2150 return flags & ~PF_R; in computeFlags() 2168 uint64_t flags = computeFlags(PF_R); in createPhdrs() 2177 addHdr(PT_PHDR, PF_R)->add(Out::programHeaders); in createPhdrs() 2179 addHdr(PT_PHDR, PF_R)->add(part.programHeaders->getParent()); in createPhdrs() [all …]
|
H A D | OutputSections.cpp | 55 ret |= PF_R; in getPhdrFlags()
|
H A D | LinkerScript.cpp | 1543 PhdrEntry *phdr = make<PhdrEntry>(cmd.type, cmd.flags.value_or(PF_R)); in createPhdrs()
|
/freebsd/sys/arm/arm/ |
H A D | dump_machdep.c | 89 phdr.p_flags = PF_R; /* XXX */ in dumpsys_write_aux_headers()
|
/freebsd/libexec/rtld-elf/ |
H A D | map_object.c | 120 stack_flags = PF_X | PF_R | PF_W; in map_object() 504 if ((elfflags & PF_R) != 0) in convert_prot()
|
H A D | rtld.c | 1671 obj->stack_flags = PF_X | PF_R | PF_W; in digest_phdr() 2402 obj->stack_flags = PF_X | PF_R | PF_W; in parse_rtld_phdr()
|
/freebsd/sys/dev/ksyms/ |
H A D | ksyms.c | 309 hdr->kh_txtphdr.p_flags = PF_R | PF_X; in ksyms_snapshot() 315 hdr->kh_datphdr.p_flags = PF_R | PF_W | PF_X; in ksyms_snapshot()
|
/freebsd/sys/conf/ |
H A D | vdso_amd64.ldscript | 45 text PT_LOAD FILEHDR PHDRS FLAGS(5); /* PF_R|PF_X */
|
H A D | vdso_amd64_ia32.ldscript | 46 text PT_LOAD FILEHDR PHDRS FLAGS(5); /* PF_R|PF_X */
|
/freebsd/usr.bin/gcore/ |
H A D | elfcore.c | 296 phdr->p_flags |= PF_R; in cb_put_phdr() 543 phdr->p_flags = PF_R; in elf_puthdr()
|
/freebsd/sys/kern/ |
H A D | kern_dump.c | 257 phdr.p_flags = PF_R; /* XXX */ in cb_dumphdr()
|
H A D | imgact_elf.c | 1982 phdr->p_flags = PF_R; in __elfN() 2910 if (flags & PF_R) in __elfN() 2913 if (i386_read_exec && (flags & PF_R)) in __elfN() 2928 flags |= PF_R; in __elfN()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
H A D | ELFDump.cpp | 323 << ((Phdr.p_flags & ELF::PF_R) ? "r" : "-") in printProgramHeaders()
|
/freebsd/sys/sys/ |
H A D | elf_common.h | 582 #define PF_R 0x4 /* Readable. */ macro
|
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
H A D | ELF.h | 1523 PF_R = 4, // Read enumerator
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ |
H A D | ObjectFileELF.cpp | 1757 if (H.p_flags & PF_R) in GetPermissions() 3377 << (((p_flags & PF_W) && (p_flags & PF_R)) ? '+' : ' ') in DumpELFProgramHeader_p_flags() 3378 << ((p_flags & PF_R) ? "PF_R" : " "); in DumpELFProgramHeader_p_flags()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ |
H A D | ProcessElfCore.cpp | 137 ((header.p_flags & llvm::ELF::PF_R) ? lldb::ePermissionsReadable : 0u) | in AddAddressRangeFromLoadSegment()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/Unix/ |
H A D | Signals.inc | 605 if (Flags & PF_R)
|
/freebsd/contrib/elftoolchain/common/ |
H A D | elfdefinitions.h | 930 _ELF_DEFINE_PF(PF_R, 0x4, "Read") \
|
/freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
H A D | ELFYAML.cpp | 757 BCase(PF_R); in bitset()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-readobj/ |
H A D | ELFDumper.cpp | 1529 LLVM_READOBJ_ENUM_ENT(ELF, PF_R) 4646 Str = (Flag & PF_R) ? "R" : " "; in printPhdrFlags()
|
/freebsd/contrib/elftoolchain/readelf/ |
H A D | readelf.c | 2479 phdr.p_flags & PF_R ? 'R' : ' ', \ in dump_phdr()
|