Home | History | Annotate | Download | only in coregrind

Lines Matching refs:new_env

215    char** new_env;
380 new_env = malloc((j+4) * sizeof(char*));
381 if (new_env == NULL)
382 barf("malloc of new_env failed.");
384 new_env[i] = envp[i];
385 new_env[i++] = new_line;
386 new_env[i++] = set_cwd;
387 new_env[i++] = NULL;
388 new_env[i ] = envp[i-2]; // the 'apple' arg == the executable_path
417 execve(toolfile, new_argv, new_env);