Home
last modified time | relevance | path

Searched refs:envc (Results 1 – 13 of 13) sorted by relevance

/linux-4.1.27/security/tomoyo/
Dcondition.c58 const int envc, const struct tomoyo_envp *envp, in tomoyo_envp() argument
68 for (i = 0; i < envc; envp++, checked++, i++) { in tomoyo_envp()
102 const u16 envc, const struct tomoyo_envp *envp) in tomoyo_scan_bprm() argument
111 int envp_count = bprm->envc; in tomoyo_scan_bprm()
115 if (argc + envc <= sizeof(local_checked)) { in tomoyo_scan_bprm()
119 checked = kzalloc(argc + envc, GFP_NOFS); in tomoyo_scan_bprm()
165 envc, envp, in tomoyo_scan_bprm()
197 for (i = 0; i < envc; envp++, i++) { in tomoyo_scan_bprm()
350 a->argc == b->argc && a->envc == b->envc && in tomoyo_same_condition()
562 e.envc++; in tomoyo_get_condition()
[all …]
Dgc.c276 const u16 envc = cond->envc; in tomoyo_del_condition() local
294 for (i = 0; i < envc; envp++, i++) { in tomoyo_del_condition()
Daudit.c32 int envp_count = bprm->envc; in tomoyo_print_bprm()
279 realpath, bprm->argc, bprm->envc, bprm_info); in tomoyo_init_log()
Ddomain.c599 int envp_count = bprm->envc; in tomoyo_environ()
Dcommon.h655 u16 envc; /* Number of "struct tomoyo_envp". */ member
/linux-4.1.27/fs/
Dbinfmt_aout.c150 int envc = bprm->envc; in create_aout_tables() local
166 sp -= envc+1; in create_aout_tables()
185 while (envc-->0) { in create_aout_tables()
Dbinfmt_flat.c129 int envc = bprm->envc; in create_flat_tables() local
133 sp -= (envc + argc + 2) + 1 + (flat_argvp_envp_on_stack() ? 2 : 0); in create_flat_tables()
153 while (envc-->0) { in create_flat_tables()
882 stack_len += (bprm->envc + 1) * sizeof(char *); /* the envp array */ in load_flat_binary()
Dexec.c1563 bprm->envc = count(envp, MAX_ARG_STRINGS); in do_execveat_common()
1564 if ((retval = bprm->envc) < 0) in do_execveat_common()
1576 retval = copy_strings(bprm->envc, envp, bprm); in do_execveat_common()
Dbinfmt_elf.c155 int envc = bprm->envc; in create_elf_tables() local
274 items = (argc + 1) + (envc + 1) + 1; in create_elf_tables()
314 while (envc-- > 0) { in create_elf_tables()
Dbinfmt_elf_fdpic.c566 sp -= (bprm->envc + 1) * sizeof(char *); /* envv[] */ in create_elf_fdpic_tables()
640 csp -= (bprm->envc + 1) * sizeof(elf_caddr_t); in create_elf_fdpic_tables()
672 for (loop = bprm->envc; loop > 0; loop--) { in create_elf_fdpic_tables()
/linux-4.1.27/arch/cris/include/asm/
Deshlibld.h78 char **env, int envc,
/linux-4.1.27/arch/x86/ia32/
Dia32_aout.c222 int argc = bprm->argc, envc = bprm->envc; in create_aout_tables() local
225 sp -= envc+1; in create_aout_tables()
243 while (envc-- > 0) { in create_aout_tables()
/linux-4.1.27/include/linux/
Dbinfmts.h39 int argc, envc; member