taglinefilesource code
exec_domain100arch/i386/kernel/signal.cif (current->exec_domain && current->exec_domain->signal_invmap)
exec_domain101arch/i386/kernel/signal.cput_fs_long(current->exec_domain->signal_invmap[signr], frame+1);
exec_domain618fs/binfmt_elf.cif (current->exec_domain && current->exec_domain->use_count)
exec_domain619fs/binfmt_elf.c(*current->exec_domain->use_count)--;
exec_domain622fs/binfmt_elf.ccurrent->exec_domain = lookup_exec_domain(current->personality);
exec_domain624fs/binfmt_elf.cif (current->exec_domain && current->exec_domain->use_count)
exec_domain625fs/binfmt_elf.c(*current->exec_domain->use_count)++;
exec_domain901fs/exec.cif (current->exec_domain && current->exec_domain->use_count)
exec_domain902fs/exec.c(*current->exec_domain->use_count)--;
exec_domain905fs/exec.ccurrent->exec_domain = lookup_exec_domain(current->personality);
exec_domain907fs/exec.cif (current->exec_domain && current->exec_domain->use_count)
exec_domain908fs/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_domain167include/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_domain37kernel/exec_domain.cif (current->exec_domain && current->exec_domain->use_count)
exec_domain38kernel/exec_domain.c(*current->exec_domain->use_count)--;
exec_domain41kernel/exec_domain.ccurrent->exec_domain = lookup_exec_domain(current->personality);
exec_domain43kernel/exec_domain.cif (current->exec_domain && current->exec_domain->use_count)
exec_domain44kernel/exec_domain.c(*current->exec_domain->use_count)++;
exec_domain46kernel/exec_domain.cif (current->exec_domain && current->exec_domain->handler
exec_domain47kernel/exec_domain.c&& current->exec_domain->handler != no_lcall7) {
exec_domain48kernel/exec_domain.ccurrent->exec_domain->handler(regs);
exec_domain55kernel/exec_domain.cstruct exec_domain *lookup_exec_domain(unsigned long personality)
exec_domain58kernel/exec_domain.cstruct exec_domain *it;
exec_domain70kernel/exec_domain.cint register_exec_domain(struct exec_domain *it)
exec_domain72kernel/exec_domain.cstruct exec_domain *tmp;
exec_domain86kernel/exec_domain.cint unregister_exec_domain(struct exec_domain *it)
exec_domain88kernel/exec_domain.cstruct exec_domain ** tmp;
exec_domain104kernel/exec_domain.cstruct exec_domain *it;
exec_domain115kernel/exec_domain.cif (current->exec_domain && current->exec_domain->use_count)
exec_domain116kernel/exec_domain.c(*current->exec_domain->use_count)--;
exec_domain118kernel/exec_domain.ccurrent->exec_domain = it;
exec_domain119kernel/exec_domain.cif (current->exec_domain->use_count)
exec_domain120kernel/exec_domain.c(*current->exec_domain->use_count)++;
exec_domain510kernel/exit.cif (current->exec_domain && current->exec_domain->use_count)
exec_domain511kernel/exit.c(*current->exec_domain->use_count)--;
exec_domain217kernel/fork.cif (p->exec_domain && p->exec_domain->use_count)
exec_domain218kernel/fork.c(*p->exec_domain->use_count)++;
exec_domain278kernel/fork.cif (p->exec_domain && p->exec_domain->use_count)
exec_domain279kernel/fork.c(*p->exec_domain->use_count)--;