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

  /external/valgrind/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 120 char *new_env = const_cast<char*>(info.dli_fname); local
124 new_env = (char*)allocator_for_env.Allocate(old_env_len + fname_len + 2);
125 internal_strncpy(new_env, dyld_insert_libraries, old_env_len);
126 new_env[old_env_len] = ':';
128 internal_strncpy(new_env + old_env_len + 1, info.dli_fname,
132 setenv(kDyldInsertLibraries, new_env, /*overwrite*/1);
138 VReport(1, "%s=%s\n", kDyldInsertLibraries, new_env);
147 "executable with:\n%s=%s\n", kDyldInsertLibraries, new_env);
158 char *new_env = (char*)allocator_for_env.Allocate( local
160 CHECK(new_env);
    [all...]
  /external/valgrind/coregrind/
launcher-darwin.c 219 char** new_env; local
384 new_env = malloc((j+4) * sizeof(char*));
385 if (new_env == NULL)
386 barf("malloc of new_env failed.");
388 new_env[i] = envp[i];
389 new_env[i++] = new_line;
390 new_env[i++] = set_cwd;
391 new_env[i++] = NULL;
392 new_env[i ] = envp[i-2]; // the 'apple' arg == the executable_path
421 execve(toolfile, new_argv, new_env);
    [all...]
launcher-linux.c 308 char** new_env; local
424 new_env = malloc((j+2) * sizeof(char*));
425 if (new_env == NULL)
426 barf("malloc of new_env failed.");
428 new_env[i] = envp[i];
429 new_env[i++] = new_line;
430 new_env[i++] = NULL;
447 execve(toolfile, argv, new_env);
  /external/mksh/src/
check.pl 276 %new_env = ();
279 $new_env{$env} = $ENV{$env} if defined $ENV{$env};
281 $new_env{'CYGWIN'} = 'nodosfilewarning';
282 $new_env{'ENV'} = '/nonexistant';
284 $new_env{'__perlname'} = $Config{perlpath};
286 $new_env{'__perlname'} = $Config{perlpath} . $Config{_exe};
291 $new_env{$1} = $2 eq '' ? $ENV{$1} : $3;
538 delete $new_env{$var};
540 $new_env{substr($var, 0, $i)} = substr($var, $i + 1);
573 $new_env{'__progname'} = $argv[0]
    [all...]
  /external/google-breakpad/src/testing/gtest/scripts/
pump.py 676 new_env = env.Clone()
677 new_env.PushVariable(identifier, i)
678 RunCode(new_env, node.code, output)
  /external/protobuf/gtest/scripts/
pump.py 669 new_env = env.Clone()
670 new_env.PushVariable(identifier, i)
671 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/v8/src/
hydrogen.cc 12094 HEnvironment* new_env = Copy(); local
12109 HEnvironment* new_env = local
    [all...]

Completed in 353 milliseconds