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

/external/valgrind/memcheck/tests/
H A Dthread_alloca.c52 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, (char *) NULL, new_env);
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_mac.cc630 char *new_env = const_cast<char*>(info.dli_fname); local
634 new_env = (char*)allocator_for_env.Allocate(old_env_len + fname_len + 2);
635 internal_strncpy(new_env, dyld_insert_libraries, old_env_len);
636 new_env[old_env_len] = ':';
638 internal_strncpy(new_env + old_env_len + 1, info.dli_fname,
642 setenv(kDyldInsertLibraries, new_env, /*overwrite*/1);
648 VReport(1, "%s=%s\n", kDyldInsertLibraries, new_env);
657 "executable with:\n%s=%s\n", kDyldInsertLibraries, new_env);
686 char *new_env = (char*)allocator_for_env.Allocate( local
688 RAW_CHECK(new_env);
[all...]
/external/valgrind/coregrind/
H A Dlauncher-darwin.c219 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...]
H A Dlauncher-linux.c319 char** new_env; local
449 new_env = malloc((j+2) * sizeof(char*));
450 if (new_env == NULL)
451 barf("malloc of new_env failed.");
453 new_env[i] = envp[i];
454 new_env[i++] = new_line;
455 new_env[i++] = NULL;
472 execve(toolfile, argv, new_env);
/external/autotest/client/bin/
H A Dprespawner.py62 new_env = dict(os.environ)
64 new_env.update(env_additions)
69 pickle.dump((new_env, args), process.stdin, protocol=2)
/external/mksh/src/
H A Dcheck.pl277 %new_env = ();
280 $new_env{$env} = $ENV{$env} if defined $ENV{$env};
282 $new_env{'CYGWIN'} = 'nodosfilewarning';
283 $new_env{'ENV'} = '/nonexistant';
284 $new_env{'PATHSEP'} = $os eq 'os2' ? ';' : ':';
286 $new_env{'__perlname'} = $Config{perlpath};
288 $new_env{'__perlname'} = $Config{perlpath} . $Config{_exe};
293 $new_env{$1} = $2 eq '' ? $ENV{$1} : $3;
541 delete $new_env{$var};
543 $new_env{subst
[all...]
/external/libcxx/utils/libcxx/test/
H A Dexecutor.py63 new_env = dict(os.environ)
67 new_env['PATH'] = "%s;%s" % (value, os.environ['PATH'])
69 new_env[key] = value
70 return new_env
/external/toolchain-utils/cros_utils/
H A Dmisc.py256 new_env = "%s=\"%s $%s\"" % (k, v, k)
258 new_env = "%s=\"$%s %s\"" % (k, k, v)
259 command = '; '.join([env_string, new_env, 'echo $%s' % k])
/external/google-breakpad/src/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/googletest/googletest/scripts/
H A Dpump.py676 new_env = env.Clone()
677 new_env.PushVariable(identifier, i)
678 RunCode(new_env, node.code, output)
/external/protobuf/gtest/scripts/
H A Dpump.py669 new_env = env.Clone()
670 new_env.PushVariable(identifier, i)
671 RunCode(new_env, node.code, output)
/external/v8/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/vulkan-validation-layers/tests/gtest-1.7.0/scripts/
H A Dpump.py676 new_env = env.Clone()
677 new_env.PushVariable(identifier, i)
678 RunCode(new_env, node.code, output)
/external/v8/src/crankshaft/
H A Dhydrogen.cc12606 HEnvironment* new_env = Copy(); local
12610 new_env->values_[i] = phi;
12612 new_env->ClearHistory();
12613 return new_env;
12621 HEnvironment* new_env = local
12625 new_env->Push(ExpressionStackAt(arguments - i));
12627 new_env->ClearHistory();
12628 return new_env;

Completed in 9271 milliseconds