Searched refs:envp (Results 1 – 9 of 9) sorted by relevance
/fs/ |
D | binfmt_som.c | 70 char **argv, **envp; in create_som_tables() local 79 envp = (char **) sp; in create_som_tables() 84 __put_user((unsigned long) envp,++sp); in create_som_tables() 99 __put_user((char *)p,envp++); in create_som_tables() 102 __put_user(NULL, envp); in create_som_tables()
|
D | binfmt_aout.c | 165 char __user * __user *envp; in create_aout_tables() local 185 envp = (char __user * __user *) sp; in create_aout_tables() 189 put_user((unsigned long) envp,--sp); in create_aout_tables() 205 put_user(p,envp++); in create_aout_tables() 210 put_user(NULL,envp); in create_aout_tables()
|
D | binfmt_flat.c | 110 unsigned long *argv,*envp; in create_flat_tables() local 120 envp = sp; in create_flat_tables() 126 --sp; put_user((unsigned long) envp, sp); in create_flat_tables() 141 put_user((unsigned long)p, envp); envp++; in create_flat_tables() 146 put_user((unsigned long) NULL, envp); in create_flat_tables()
|
D | binfmt_elf.c | 151 elf_addr_t __user *envp; in create_elf_tables() local 289 envp = argv + argc + 1; in create_elf_tables() 307 if (__put_user((elf_addr_t)p, envp++)) in create_elf_tables() 314 if (__put_user(0, envp)) in create_elf_tables() 319 sp = (elf_addr_t __user *)envp + 1; in create_elf_tables()
|
D | binfmt_elf_fdpic.c | 472 elf_caddr_t __user *argv, *envp; in create_elf_fdpic_tables() local 639 envp = (elf_caddr_t __user *) csp; in create_elf_fdpic_tables() 671 __put_user((elf_caddr_t)(unsigned long) p, envp++); in create_elf_fdpic_tables() 677 __put_user(NULL, envp); in create_elf_fdpic_tables()
|
D | exec.c | 1277 char __user *__user *envp, in do_execve() argument 1323 bprm->envc = count(envp, MAX_ARG_STRINGS); in do_execve() 1336 retval = copy_strings(bprm->envc, envp, bprm); in do_execve()
|
D | compat.c | 1390 compat_uptr_t __user *envp, in compat_do_execve() argument 1431 bprm->envc = compat_count(envp, MAX_ARG_STRINGS); in compat_do_execve() 1444 retval = compat_copy_strings(bprm->envc, envp, bprm); in compat_do_execve()
|
/fs/gfs2/locking/dlm/ |
D | mount.c | 199 char *envp[] = { env_jid, env_status, NULL }; in gdlm_recovery_done() local 206 kobject_uevent_env(&ls->kobj, KOBJ_CHANGE, envp); in gdlm_recovery_done() 212 char *envp[] = { message, NULL }; in gdlm_others_may_mount() local 215 kobject_uevent_env(&ls->kobj, KOBJ_CHANGE, envp); in gdlm_others_may_mount()
|
/fs/ocfs2/ |
D | stackglue.c | 396 char *argv[5], *envp[3]; in ocfs2_leave_group() local 405 envp[0] = "HOME=/"; in ocfs2_leave_group() 406 envp[1] = "PATH=/sbin:/bin:/usr/sbin:/usr/bin"; in ocfs2_leave_group() 407 envp[2] = NULL; in ocfs2_leave_group() 409 ret = call_usermodehelper(argv[0], argv, envp, UMH_WAIT_PROC); in ocfs2_leave_group()
|