Searched defs:new_env (Results 1 - 5 of 5) sorted by relevance

/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/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/
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 105 milliseconds