HomeSort by relevance Sort by last modified time
    Searched refs:new_env (Results 1 - 10 of 10) 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, (char *) NULL, new_env);
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_mac.cc 572 char *new_env = const_cast<char*>(info.dli_fname); local
576 new_env = (char*)allocator_for_env.Allocate(old_env_len + fname_len + 2);
577 internal_strncpy(new_env, dyld_insert_libraries, old_env_len);
578 new_env[old_env_len] = ':';
580 internal_strncpy(new_env + old_env_len + 1, info.dli_fname,
584 setenv(kDyldInsertLibraries, new_env, /*overwrite*/1);
590 VReport(1, "%s=%s\n", kDyldInsertLibraries, new_env);
599 "executable with:\n%s=%s\n", kDyldInsertLibraries, new_env);
613 char *new_env = (char*)allocator_for_env.Allocate( local
615 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 325 char** new_env; local
456 new_env = malloc((j+2) * sizeof(char*));
457 if (new_env == NULL)
458 barf("malloc of new_env failed.");
460 new_env[i] = envp[i];
461 new_env[i++] = new_line;
462 new_env[i++] = NULL;
479 execve(toolfile, argv, new_env);
  /external/autotest/client/bin/
prespawner.py 62 new_env = dict(os.environ)
64 new_env.update(env_additions)
69 pickle.dump((new_env, args), process.stdin, protocol=2)
  /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';
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{substr($var, 0, $i)} = substr($var, $i + 1)
    [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)
  /external/vulkan-validation-layers/tests/gtest-1.7.0/scripts/
pump.py 676 new_env = env.Clone()
677 new_env.PushVariable(identifier, i)
678 RunCode(new_env, node.code, output)
  /external/v8/src/crankshaft/
hydrogen.cc 13166 HEnvironment* new_env = Copy(); local
13181 HEnvironment* new_env = local
    [all...]

Completed in 980 milliseconds