Lines Matching refs:stdin
804 File stdin = std.stdio.stdin,
816 return spawnProcessWin(commandLine, program, stdin, stdout, stderr, env, config, workDir);
820 return spawnProcessPosix(args, stdin, stdout, stderr, env, config, workDir);
834 std.stdio.stdin,
844 File stdin = std.stdio.stdin,
853 stdin, stdout, stderr, env, config, workDir);
885 File stdin,
941 auto stdinFD = getFD(stdin);
1208 && stdinFD != getFD(std.stdio.stdin ))
1209 stdin.close();
1248 std.stdio.stdin,
1286 File stdin,
1339 prepareStream(stdin, STD_INPUT_HANDLE, "stdin" , stdinFD, startinfo.hStdInput );
1362 && stdinFD != getFD(std.stdio.stdin ))
1363 stdin.close();
1904 spawnProcess(["cmd", "/c", "echo BBBBB"], std.stdio.stdin, f).wait();
1952 File stdin = std.stdio.stdin,
1969 return spawnProcessWin(commandLine, shellPath, stdin, stdout, stderr, env, config, workDir);
1982 return spawnProcessPosix(args, stdin, stdout, stderr, env, config, workDir);
1997 std.stdio.stdin,
2020 assert(wait(spawnShell(cmd, std.stdio.stdin, f, std.stdio.stderr, env)) == 0);
2988 if (redirectFlags & Redirect.stdin)
2996 childStdin = std.stdio.stdin;
3061 stdin = 1,
3069 all = stdin | stdout | stderr,
3108 pp.stdin.writeln("foo");
3109 pp.stdin.flush();
3112 pp.stdin.writeln("1234567890");
3113 pp.stdin.flush();
3116 pp.stdin.writeln("stop");
3117 pp.stdin.flush();
3121 Redirect.stdin | Redirect.stdout | Redirect.stderrToStdout);
3122 pp.stdin.writeln("xyz");
3123 pp.stdin.flush();
3126 pp.stdin.writeln("stop");
3127 pp.stdin.flush();
3131 Redirect.stdin | Redirect.stdoutToStderr | Redirect.stderr);
3132 pp.stdin.writeln("ab");
3133 pp.stdin.flush();
3136 pp.stdin.writeln("stop");
3137 pp.stdin.flush();
3151 auto p = pipeProcess(prog.path, Redirect.stdin);
3156 assertThrown!Error(p.stdin);
3181 @property File stdin() @safe nothrow
3183 if ((_redirectFlags & Redirect.stdin) == 0)