Lines Matching refs:env
236 char* env[1];
250 options.env = env;
251 env[0] = NULL;
803 /* Explicitly set options.env to NULL to test for env clobbering. */
804 options.env = NULL;
1287 WCHAR* env;
1308 result = make_program_env(environment, &env);
1311 for (str = env, prev = NULL; *str; prev = str, str += wcslen(str) + 1) {
1375 char* env[1];
1386 options.env = env;
1387 env[0] = NULL;
1429 char* env[2];
1436 /* Set up the PATH env variable */
1446 env[0] = path;
1447 env[1] = NULL;
1450 options.env = env;
1818 char* env[3];
1835 /* Set up the PATH env variable */
1855 env[0] = path;
1856 env[1] = getenv(dyld_path_var);
1857 env[2] = NULL;
1859 if (env[1] != NULL) {
1861 snprintf(buf, sizeof(buf), "%s=%s", dyld_path_var, env[1]);
1862 env[1] = buf;
1867 options.env = env;
1981 options.env = quoted_path_env;