Lines Matching refs:env
371 if (options->env != NULL)
372 environ = options->env;
631 char* uv__spawn_find_path_in_env(char** env) {
636 * provided env array, and return its value if found */
637 for (env_iterator = env; *env_iterator != NULL; env_iterator++) {
669 * by options->env */
670 char** env = environ;
671 if (options->env != NULL)
672 env = options->env;
680 err = posix_spawn(pid, options->file, actions, attrs, options->args, env);
685 /* Look for the definition of PATH in the provided env */
686 path = uv__spawn_find_path_in_env(env);
692 /* If no path was provided in env, use the default value
724 err = posix_spawn(pid, b, actions, attrs, options->args, env);