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

  /external/valgrind/main/memcheck/tests/
thread_alloca.c 52 char** new_env; local
60 new_env = malloc((j+2) * sizeof(char*));
61 assert (new_env != NULL);
63 new_env[i] = envp[i];
64 new_env[i++] = more_env;
65 new_env[i++] = NULL;
69 execle(argv[0], argv[0], n, NULL, new_env);
  /external/compiler-rt/lib/asan/
asan_mac.cc 123 char *new_env = const_cast<char*>(info.dli_fname); local
127 new_env = (char*)allocator_for_env.Allocate(old_env_len + fname_len + 2);
128 internal_strncpy(new_env, dyld_insert_libraries, old_env_len);
129 new_env[old_env_len] = ':';
131 internal_strncpy(new_env + old_env_len + 1, info.dli_fname,
135 setenv(kDyldInsertLibraries, new_env, /*overwrite*/1);
141 VReport(1, "%s=%s\n", kDyldInsertLibraries, new_env);
154 char *new_env = (char*)allocator_for_env.Allocate( local
156 CHECK(new_env);
157 internal_memset(new_env, '\0', old_env_len + 2 + env_name_len)
    [all...]
  /external/chromium_org/build/
env_dump.py 46 new_env = json.loads(output)
47 for k, val in new_env.items():
  /external/valgrind/main/coregrind/
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...]
launcher-linux.c 276 char** new_env; local
376 new_env = malloc((j+2) * sizeof(char*));
377 if (new_env == NULL)
378 barf("malloc of new_env failed.");
380 new_env[i] = envp[i];
381 new_env[i++] = new_line;
382 new_env[i++] = NULL;
399 execve(toolfile, argv, new_env);
  /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 277 %new_env = ();
280 $new_env{$env} = $ENV{$env} if defined $ENV{$env};
282 $new_env{'CYGWIN'} = 'nodosfilewarning';
283 $new_env{'ENV'} = '/nonexistant';
285 $new_env{'__perlname'} = $Config{perlpath};
287 $new_env{'__perlname'} = $Config{perlpath} . $Config{_exe};
292 $new_env{$1} = $2 eq '' ? $ENV{$1} : $3;
528 delete $new_env{$var};
530 $new_env{substr($var, 0, $i)} = substr($var, $i + 1);
563 $new_env{'__progname'} = $argv[0]
    [all...]
  /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)
  /ndk/
ndk-gdb.py 394 new_env = os.environ.copy()
397 new_env["ADB_TRACE"] = "1"
410 env=new_env
414 env=new_env
    [all...]
  /external/chromium_org/v8/src/
hydrogen.cc 11911 HEnvironment* new_env = Copy(); local
11926 HEnvironment* new_env = local
    [all...]

Completed in 619 milliseconds