| tag | line | file | source code |
| elf_prot | 209 | fs/binfmt_elf.c | int elf_prot = 0; |
| elf_prot | 211 | fs/binfmt_elf.c | if (eppnt->p_flags & PF_R) elf_prot = PROT_READ; |
| elf_prot | 212 | fs/binfmt_elf.c | if (eppnt->p_flags & PF_W) elf_prot |= PROT_WRITE; |
| elf_prot | 213 | fs/binfmt_elf.c | if (eppnt->p_flags & PF_X) elf_prot |= PROT_EXEC; |
| elf_prot | 222 | fs/binfmt_elf.c | elf_prot, |
| elf_prot | 555 | fs/binfmt_elf.c | int elf_prot = (elf_ppnt->p_flags & PF_R) ? PROT_READ : 0; |
| elf_prot | 556 | fs/binfmt_elf.c | if (elf_ppnt->p_flags & PF_W) elf_prot |= PROT_WRITE; |
| elf_prot | 557 | fs/binfmt_elf.c | if (elf_ppnt->p_flags & PF_X) elf_prot |= PROT_EXEC; |
| elf_prot | 561 | fs/binfmt_elf.c | elf_prot, |