Searched refs:new_env (Results 1 - 8 of 8) sorted by relevance

/external/valgrind/main/coregrind/
H A Dlauncher-linux.c242 char** new_env; local
339 new_env = malloc((j+2) * sizeof(char*));
340 if (new_env == NULL)
341 barf("malloc of new_env failed.");
343 new_env[i] = envp[i];
344 new_env[i++] = new_line;
345 new_env[i++] = NULL;
362 execve(toolfile, argv, new_env);
H A Dlauncher-darwin.c215 char** new_env; local
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);
[all...]
/external/qemu/distrib/sdl-1.2.15/src/stdlib/
H A DSDL_getenv.c98 char **new_env; local
142 new_env = SDL_realloc(SDL_env, (i+2)*sizeof(char *));
143 if ( new_env ) {
144 SDL_env = new_env;
/external/mksh/src/
H A Dcheck.pl260 %new_env = ();
263 $new_env{$env} = $ENV{$env} if defined $ENV{$env};
265 $new_env{'ENV'} = '/nonexistant';
267 $new_env{'__perlname'} = $Config{perlpath};
269 $new_env{'__perlname'} = $Config{perlpath} . $Config{_exe};
274 $new_env{$1} = $2 eq '' ? $ENV{$1} : $3;
501 delete $new_env{$var};
503 $new_env{substr($var, 0, $i)} = substr($var, $i + 1);
536 $new_env{'__progname'} = $argv[0];
539 #%ENV = %new_env;
[all...]
/external/chromium/testing/gtest/scripts/
H A Dpump.py676 new_env = env.Clone()
677 new_env.PushVariable(identifier, i)
678 RunCode(new_env, node.code, output)
/external/gtest/scripts/
H A Dpump.py676 new_env = env.Clone()
677 new_env.PushVariable(identifier, i)
678 RunCode(new_env, node.code, output)
/external/qemu/
H A Dexec.c1737 CPUState *new_env = cpu_init(env->cpu_model_str); local
1738 CPUState *next_cpu = new_env->next_cpu;
1739 int cpu_index = new_env->cpu_index;
1745 memcpy(new_env, env, sizeof(CPUState));
1748 new_env->next_cpu = next_cpu;
1749 new_env->cpu_index = cpu_index;
1758 cpu_breakpoint_insert(new_env, bp->pc, bp->flags, NULL);
1761 cpu_watchpoint_insert(new_env, wp->vaddr, (~wp->len_mask) + 1,
1766 return new_env;
/external/v8/src/
H A Dhydrogen.cc7763 HEnvironment* new_env = Copy(); local
7767 new_env->values_[i] = phi;
7770 new_env->ClearHistory();
7771 return new_env;
7779 HEnvironment* new_env = new(closure()->GetIsolate()->zone()) local
7782 new_env->Push(ExpressionStackAt(arguments - i));
7784 new_env->ClearHistory();
7785 return new_env;

Completed in 218 milliseconds