taglinefilesource code
exec_domain99arch/i386/kernel/signal.cif (current->exec_domain && current->exec_domain->signal_invmap)
exec_domain100arch/i386/kernel/signal.cput_fs_long(current->exec_domain->signal_invmap[signr], frame+1);
exec_domain581fs/binfmt_elf.cif (current->exec_domain && current->exec_domain->use_count)
exec_domain582fs/binfmt_elf.c(*current->exec_domain->use_count)--;
exec_domain585fs/binfmt_elf.ccurrent->exec_domain = lookup_exec_domain(current->personality);
exec_domain587fs/binfmt_elf.cif (current->exec_domain && current->exec_domain->use_count)
exec_domain588fs/binfmt_elf.c(*current->exec_domain->use_count)++;
exec_domain821fs/exec.cif (current->exec_domain && current->exec_domain->use_count)
exec_domain822fs/exec.c(*current->exec_domain->use_count)--;
exec_domain825fs/exec.ccurrent->exec_domain = lookup_exec_domain(current->personality);
exec_domain827fs/exec.cif (current->exec_domain && current->exec_domain->use_count)
exec_domain828fs/exec.c(*current->exec_domain->use_count)++;
exec_domain41include/linux/personality.hstruct exec_domain *next;
exec_domain44include/linux/personality.hextern struct exec_domain default_exec_domain;
exec_domain46include/linux/personality.hextern struct exec_domain *lookup_exec_domain(unsigned long personality);
exec_domain47include/linux/personality.hextern int register_exec_domain(struct exec_domain *it);
exec_domain48include/linux/personality.hextern int unregister_exec_domain(struct exec_domain *it);
exec_domain149include/linux/sched.hstruct exec_domain *exec_domain;
exec_domain16kernel/exec_domain.cstruct exec_domain default_exec_domain = {
exec_domain26kernel/exec_domain.cstatic struct exec_domain *exec_domains = &default_exec_domain;
exec_domain34kernel/exec_domain.cstruct exec_domain *lookup_exec_domain(unsigned long personality)
exec_domain37kernel/exec_domain.cstruct exec_domain *it;
exec_domain49kernel/exec_domain.cint register_exec_domain(struct exec_domain *it)
exec_domain51kernel/exec_domain.cstruct exec_domain *tmp;
exec_domain65kernel/exec_domain.cint unregister_exec_domain(struct exec_domain *it)
exec_domain67kernel/exec_domain.cstruct exec_domain ** tmp;
exec_domain83kernel/exec_domain.cstruct exec_domain *it;
exec_domain94kernel/exec_domain.cif (current->exec_domain && current->exec_domain->use_count)
exec_domain95kernel/exec_domain.c(*current->exec_domain->use_count)--;
exec_domain97kernel/exec_domain.ccurrent->exec_domain = it;
exec_domain98kernel/exec_domain.cif (current->exec_domain->use_count)
exec_domain99kernel/exec_domain.c(*current->exec_domain->use_count)++;
exec_domain455kernel/exit.cif (current->exec_domain && current->exec_domain->use_count)
exec_domain456kernel/exit.c(*current->exec_domain->use_count)--;
exec_domain189kernel/fork.cif (p->exec_domain && p->exec_domain->use_count)
exec_domain190kernel/fork.c(*p->exec_domain->use_count)++;