HomeSort by relevance Sort by last modified time
    Searched refs:new_env (Results 1 - 13 of 13) sorted by null

  /external/compiler-rt/lib/asan/
asan_mac.cc 160 char *new_env = const_cast<char*>(info.dli_fname); local
164 new_env = (char*)allocator_for_env.Allocate(old_env_len + fname_len + 2);
165 internal_strncpy(new_env, dyld_insert_libraries, old_env_len);
166 new_env[old_env_len] = ':';
168 internal_strncpy(new_env + old_env_len + 1, info.dli_fname,
172 setenv(kDyldInsertLibraries, new_env, /*overwrite*/1);
179 Report("%s=%s\n", kDyldInsertLibraries, new_env);
193 char *new_env = (char*)allocator_for_env.Allocate( local
195 CHECK(new_env);
196 internal_memset(new_env, '\0', old_env_len + 2 + env_name_len)
    [all...]
  /external/valgrind/main/coregrind/
launcher-linux.c 250 char** new_env; local
348 new_env = malloc((j+2) * sizeof(char*));
349 if (new_env == NULL)
350 barf("malloc of new_env failed.");
352 new_env[i] = envp[i];
353 new_env[i++] = new_line;
354 new_env[i++] = NULL;
371 execve(toolfile, argv, new_env);
launcher-darwin.c 215 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/
SDL_getenv.c 98 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/
check.pl 278 %new_env = ();
281 $new_env{$env} = $ENV{$env} if defined $ENV{$env};
283 $new_env{'CYGWIN'} = 'nodosfilewarning';
284 $new_env{'ENV'} = '/nonexistant';
286 $new_env{'__perlname'} = $Config{perlpath};
288 $new_env{'__perlname'} = $Config{perlpath} . $Config{_exe};
293 $new_env{$1} = $2 eq '' ? $ENV{$1} : $3;
520 delete $new_env{$var};
522 $new_env{substr($var, 0, $i)} = substr($var, $i + 1);
555 $new_env{'__progname'} = $argv[0]
    [all...]
  /ndk/
ndk-gdb.py 367 new_env = os.environ.copy()
370 new_env["ADB_TRACE"] = "1"
383 env=new_env
387 env=new_env
  /external/chromium/testing/gtest/scripts/
pump.py 676 new_env = env.Clone()
677 new_env.PushVariable(identifier, i)
678 RunCode(new_env, node.code, output)
  /external/chromium_org/testing/gtest/scripts/
pump.py 676 new_env = env.Clone()
677 new_env.PushVariable(identifier, i)
678 RunCode(new_env, node.code, output)
  /external/gtest/scripts/
pump.py 676 new_env = env.Clone()
677 new_env.PushVariable(identifier, i)
678 RunCode(new_env, node.code, output)
  /external/libvpx/libvpx/third_party/googletest/src/scripts/
pump.py 676 new_env = env.Clone()
677 new_env.PushVariable(identifier, i)
678 RunCode(new_env, node.code, output)
  /external/qemu/
exec.c 1737 CPUState *new_env = cpu_init(env->cpu_model_str); local
    [all...]
  /external/chromium_org/v8/src/
hydrogen.cc 9427 HEnvironment* new_env = Copy(); local
9442 HEnvironment* new_env = local
    [all...]
  /external/v8/src/
hydrogen.cc 7763 HEnvironment* new_env = Copy(); local
7779 HEnvironment* new_env = new(closure()->GetIsolate()->zone()) local
    [all...]

Completed in 732 milliseconds