Lines Matching defs:env
392 if (options->env != NULL)
393 environ = options->env;
651 char* uv__spawn_find_path_in_env(char** env) {
656 * provided env array, and return its value if found */
657 for (env_iterator = env; *env_iterator != NULL; env_iterator++) {
689 * by options->env */
690 char** env = environ;
691 if (options->env != NULL)
692 env = options->env;
700 err = posix_spawn(pid, options->file, actions, attrs, options->args, env);
705 /* Look for the definition of PATH in the provided env */
706 path = uv__spawn_find_path_in_env(env);
712 /* If no path was provided in env, use the default value
744 err = posix_spawn(pid, b, actions, attrs, options->args, env);