| tag | line | file | source code |
| exec_domain | 100 | arch/i386/kernel/signal.c | if (current->exec_domain && current->exec_domain->signal_invmap) |
| exec_domain | 101 | arch/i386/kernel/signal.c | put_fs_long(current->exec_domain->signal_invmap[signr], frame+1); |
| exec_domain | 618 | fs/binfmt_elf.c | if (current->exec_domain && current->exec_domain->use_count) |
| exec_domain | 619 | fs/binfmt_elf.c | (*current->exec_domain->use_count)--; |
| exec_domain | 622 | fs/binfmt_elf.c | current->exec_domain = lookup_exec_domain(current->personality); |
| exec_domain | 624 | fs/binfmt_elf.c | if (current->exec_domain && current->exec_domain->use_count) |
| exec_domain | 625 | fs/binfmt_elf.c | (*current->exec_domain->use_count)++; |
| exec_domain | 901 | fs/exec.c | if (current->exec_domain && current->exec_domain->use_count) |
| exec_domain | 902 | fs/exec.c | (*current->exec_domain->use_count)--; |
| exec_domain | 905 | fs/exec.c | current->exec_domain = lookup_exec_domain(current->personality); |
| exec_domain | 907 | fs/exec.c | if (current->exec_domain && current->exec_domain->use_count) |
| exec_domain | 908 | fs/exec.c | (*current->exec_domain->use_count)++; |
| exec_domain | 41 | include/linux/personality.h | struct exec_domain *next; |
| exec_domain | 44 | include/linux/personality.h | extern struct exec_domain default_exec_domain; |
| exec_domain | 46 | include/linux/personality.h | extern struct exec_domain *lookup_exec_domain(unsigned long personality); |
| exec_domain | 47 | include/linux/personality.h | extern int register_exec_domain(struct exec_domain *it); |
| exec_domain | 48 | include/linux/personality.h | extern int unregister_exec_domain(struct exec_domain *it); |
| exec_domain | 167 | include/linux/sched.h | struct exec_domain *exec_domain; |
| exec_domain | 16 | kernel/exec_domain.c | struct exec_domain default_exec_domain = { |
| exec_domain | 26 | kernel/exec_domain.c | static struct exec_domain *exec_domains = &default_exec_domain; |
| exec_domain | 37 | kernel/exec_domain.c | if (current->exec_domain && current->exec_domain->use_count) |
| exec_domain | 38 | kernel/exec_domain.c | (*current->exec_domain->use_count)--; |
| exec_domain | 41 | kernel/exec_domain.c | current->exec_domain = lookup_exec_domain(current->personality); |
| exec_domain | 43 | kernel/exec_domain.c | if (current->exec_domain && current->exec_domain->use_count) |
| exec_domain | 44 | kernel/exec_domain.c | (*current->exec_domain->use_count)++; |
| exec_domain | 46 | kernel/exec_domain.c | if (current->exec_domain && current->exec_domain->handler |
| exec_domain | 47 | kernel/exec_domain.c | && current->exec_domain->handler != no_lcall7) { |
| exec_domain | 48 | kernel/exec_domain.c | current->exec_domain->handler(regs); |
| exec_domain | 55 | kernel/exec_domain.c | struct exec_domain *lookup_exec_domain(unsigned long personality) |
| exec_domain | 58 | kernel/exec_domain.c | struct exec_domain *it; |
| exec_domain | 70 | kernel/exec_domain.c | int register_exec_domain(struct exec_domain *it) |
| exec_domain | 72 | kernel/exec_domain.c | struct exec_domain *tmp; |
| exec_domain | 86 | kernel/exec_domain.c | int unregister_exec_domain(struct exec_domain *it) |
| exec_domain | 88 | kernel/exec_domain.c | struct exec_domain ** tmp; |
| exec_domain | 104 | kernel/exec_domain.c | struct exec_domain *it; |
| exec_domain | 115 | kernel/exec_domain.c | if (current->exec_domain && current->exec_domain->use_count) |
| exec_domain | 116 | kernel/exec_domain.c | (*current->exec_domain->use_count)--; |
| exec_domain | 118 | kernel/exec_domain.c | current->exec_domain = it; |
| exec_domain | 119 | kernel/exec_domain.c | if (current->exec_domain->use_count) |
| exec_domain | 120 | kernel/exec_domain.c | (*current->exec_domain->use_count)++; |
| exec_domain | 510 | kernel/exit.c | if (current->exec_domain && current->exec_domain->use_count) |
| exec_domain | 511 | kernel/exit.c | (*current->exec_domain->use_count)--; |
| exec_domain | 217 | kernel/fork.c | if (p->exec_domain && p->exec_domain->use_count) |
| exec_domain | 218 | kernel/fork.c | (*p->exec_domain->use_count)++; |
| exec_domain | 278 | kernel/fork.c | if (p->exec_domain && p->exec_domain->use_count) |
| exec_domain | 279 | kernel/fork.c | (*p->exec_domain->use_count)--; |