Searched refs:envc (Results 1 - 11 of 11) sorted by relevance

/linux-master/tools/objtool/
H A Dbuiltin-check.c105 int envc; local
110 for (envc = 1; envc < ARRAY_SIZE(envv); ) {
111 envv[envc++] = env;
119 parse_options(envc, envv, check_options, env_usage, 0);
/linux-master/security/tomoyo/
H A Dcondition.c54 * @envc: Length of @envp.
61 const int envc, const struct tomoyo_envp *envp,
72 for (i = 0; i < envc; envp++, checked++, i++) {
100 * @envc: Length of @envp.
107 const u16 envc, const struct tomoyo_envp *envp)
116 int envp_count = bprm->envc;
121 if (argc + envc <= sizeof(local_checked)) {
125 checked = kzalloc(argc + envc, GFP_NOFS);
173 envc, envp,
206 for (i = 0; i < envc; env
60 tomoyo_envp(const char *env_name, const char *env_value, const int envc, const struct tomoyo_envp *envp, u8 *checked) argument
105 tomoyo_scan_bprm(struct tomoyo_execve *ee, const u16 argc, const struct tomoyo_argv *argv, const u16 envc, const struct tomoyo_envp *envp) argument
779 u16 envc; local
[all...]
H A Dgc.c285 const u16 envc = cond->envc; local
304 for (i = 0; i < envc; envp++, i++) {
H A Daudit.c33 int envp_count = bprm->envc;
267 /* +80 is for " exec={ realpath=\"%s\" argc=%d envc=%d %s }" */
284 " exec={ realpath=\"%s\" argc=%d envc=%d %s }",
285 realpath, bprm->argc, bprm->envc, bprm_info);
H A Ddomain.c624 int envp_count = bprm->envc;
H A Dcommon.h81 TOMOYO_EXEC_ENVC, /* "struct linux_binprm *"->envc */
659 u16 envc; /* Number of "struct tomoyo_envp". */ member in struct:tomoyo_condition
667 * struct tomoyo_envp envp[envc];
/linux-master/include/linux/
H A Dbinfmts.h52 int argc, envc; member in struct:linux_binprm
/linux-master/fs/
H A Dbinfmt_flat.c115 sp -= bprm->envc + 1;
148 for (i = bprm->envc; i > 0; i--) {
875 stack_len += (bprm->envc + 1) * sizeof(char *); /* the envp array */
H A Dexec.c510 ptr_size = (max(bprm->argc, 1) + bprm->envc) * sizeof(void *);
1947 bprm->envc = retval;
1958 retval = copy_strings(bprm->envc, envp, bprm);
2020 bprm->envc = retval;
2031 retval = copy_strings_kernel(bprm->envc, envp, bprm);
H A Dbinfmt_elf.c163 int envc = bprm->envc; local
288 items = (argc + 1) + (envc + 1) + 1;
332 while (envc-- > 0) {
H A Dbinfmt_elf_fdpic.c597 sp -= (bprm->envc + 1) * sizeof(char *); /* envv[] */
675 csp -= (bprm->envc + 1) * sizeof(elf_caddr_t);
710 for (loop = bprm->envc; loop > 0; loop--) {

Completed in 155 milliseconds