Lines Matching refs:envp
70 static char const **bear_update_environment(char *const envp[], bear_env_t *env);
106 char *const envp[]);
113 char *const envp[]);
121 char *const envp[]);
128 char *const envp[restrict]);
135 char *const envp[restrict]);
161 int execve(const char *path, char *const argv[], char *const envp[]) { in execve() argument
163 return call_execve(path, argv, envp); in execve()
173 char * const * envp = bear_get_environment(); in execv() local
174 return call_execve(path, argv, envp); in execv()
179 int execvpe(const char *file, char *const argv[], char *const envp[]) { in execvpe() argument
181 return call_execvpe(file, argv, envp); in execvpe()
200 int exect(const char *path, char *const argv[], char *const envp[]) { in exect() argument
202 return call_exect(path, argv, envp); in exect()
217 char * const * envp = bear_get_environment(); in execl() local
218 int const result = call_execve(path, (char *const *)argv, envp); in execl()
252 char const **envp = va_arg(args, char const **); in execle() local
257 call_execve(path, (char *const *)argv, (char *const *)envp); in execle()
268 char *const argv[restrict], char *const envp[restrict]) { in posix_spawn()
270 return call_posix_spawn(pid, path, file_actions, attrp, argv, envp); in posix_spawn()
278 char *const argv[restrict], char *const envp[restrict]) { in posix_spawnp()
280 return call_posix_spawnp(pid, file, file_actions, attrp, argv, envp); in posix_spawnp()
289 char *const envp[]) { in call_execve() argument
294 char const **const menvp = bear_update_environment(envp, &initial_env); in call_execve()
303 char *const envp[]) { in call_execvpe() argument
308 char const **const menvp = bear_update_environment(envp, &initial_env); in call_execvpe()
352 char *const envp[]) { in call_exect() argument
357 char const **const menvp = bear_update_environment(envp, &initial_env); in call_exect()
369 char *const envp[restrict]) { in call_posix_spawn()
377 char const **const menvp = bear_update_environment(envp, &initial_env); in call_posix_spawn()
390 char *const envp[restrict]) { in call_posix_spawnp()
398 char const **const menvp = bear_update_environment(envp, &initial_env); in call_posix_spawnp()
484 static char const **bear_update_environment(char *const envp[], bear_env_t *env) { in bear_update_environment() argument
485 char const **result = bear_strings_copy((char const **)envp); in bear_update_environment()