Searched refs:stdin (Results 1 - 25 of 85) sorted by path

1234

/haiku/3rdparty/mmu_man/onlinedemo/
H A Dhaiku.php80 ."-daemonize " /* detach from stdin */
538 // 0 => array("pipe", "r"), // stdin
/haiku/build/scripts/
H A Dbootstrap_client.py47 connections = [controlConnection, stdioConnection, stderrConnection, sys.stdin]
49 while connections and (len(connections) > 1 or not sys.stdin in connections):
53 if sys.stdin in readable:
54 data = sys.stdin.readline(bufferSize)
58 connections.remove(sys.stdin)
H A Dbootstrap_daemon.py36 exitCode = subprocess.call(commandToRun, stdin=stdioConnection,
/haiku/headers/cpp/
H A Diostdio.h55 #define stdin _IO_stdin macro
/haiku/src/add-ons/media/plugins/ape_reader/MAClib/
H A DStdLibFileIO.cpp65 // stdin/stdout/FILENO_STDIN/FILENO_STDOUT we can't open the file with this
127 if (0 == strcmp(pName, "-") || 0 == strcmp(pName, "/dev/stdin"))
129 m_pFile = SETBINARY_IN(stdin);
/haiku/src/bin/bfs_tools/lib/
H A DDisk.cpp329 fgets(answer, 15, stdin);
/haiku/src/bin/
H A Dclipboard.cpp72 {"stdin", no_argument, 0, 'i'},
141 " -i, --stdin\t\tLoad clipboard with string from standard input\n\n"
243 while ((c = fgetc(stdin)) != EOF) {
H A Dcomm.c187 return (stdin);
H A Dlogger.cpp115 "If <message> is omitted, the message is read from stdin.\n\n"
201 // read messages from stdin
204 while (fgets(buffer, sizeof(buffer), stdin) != NULL) {
H A Dmimeset.cpp45 "specified as <path>, file paths are read from stdin.\n"
238 // read file names from stdin
240 while (fgets(name, sizeof(name), stdin) != NULL) {
/haiku/src/bin/multiuser/
H A Dlogin.cpp38 while ((c = fgetc(stdin)) != EOF && c != '\r' && c != '\n') {
46 if (ferror(stdin) != 0)
47 return ferror(stdin);
/haiku/src/bin/network/telnet/
H A Dauthenc.c102 res = fgets(result, length, stdin);
H A Dcommands.c1307 (void) fgets(buf, sizeof(buf), stdin);
2204 (void) fgets(&line[strlen(line)], sizeof(line) - strlen(line), stdin);
2649 if (fgets(line, sizeof(line), stdin) == NULL) {
2650 if (feof(stdin) || ferror(stdin)) {
H A Dsys_bsd.c130 tin = fileno(stdin);
785 if (ioctl(fileno(stdin), TIOCGWINSZ, (char *)&ws) >= 0) {
/haiku/src/bin/pc/
H A Dpc.c78 from stdin.
139 void do_input(void); /* reads stdin and calls parser */
285 while(fgets(buff, 256, stdin) != NULL)
/haiku/src/bin/pcmcia-cs/
H A Dpack_cis.c37 [infile] defaults to stdin, and [outfile] defaults to stdout.
431 f = stdin;
/haiku/src/bin/pkgman/
H A DDecisionProvider.cpp41 if (fgets(buffer, 32, stdin)) {
/haiku/src/bin/rc/
H A Dcompile.cpp83 // ignore the special stdin file
197 // "-" means reading from stdin
201 yyin = stdin;
H A Dlexer.l280 if (stdin != yyin)
/haiku/src/bin/unzip/
H A Dextract.c762 fgets(G.answerbuf, 9, stdin);
1243 if (fgets(G.answerbuf, 9, stdin) == (char *)NULL) {
1256 fgets(G.filename, FILNAMSIZ, stdin);
1262 #ifdef WIN32 /* WIN32 fgets( ... , stdin) returns OEM coded strings */
H A Dfileio.c1159 fgets(G.answerbuf, 9, stdin);
H A Dfunzip.c30 stdin not redirected, warn if more
54 2.3 14 Dec 92 M. Adler replaced fseek (fails on stdin for SCO
102 All funzip does is take a zipfile from stdin and decompress the
299 /* Given a zipfile on stdin, decompress the first entry to stdout. */
343 /* if no file argument and stdin not redirected, give the user help */
353 zip entry of stdin or the given file.\n"));
368 setmode(stdin, _BINARY);
375 G.in = stdin;
378 err(2, "cannot find stdin");
H A Dprocess.c300 if (fgets(G.answerbuf, 9, stdin) != (char *)NULL
H A Dttyio.c609 /* Read from stdin. This is unsafe if the password is stored on disk. */
662 f = stdin;
/haiku/src/libs/bsd/
H A Dgetpass.c26 if (tcgetattr(fileno(stdin), &termios) == 0) {
30 changed = tcsetattr(fileno(stdin), TCSAFLUSH, &noEchoTermios) == 0;
38 if (fgets(password, sizeof(password), stdin) != NULL) {
52 tcsetattr(fileno(stdin), TCSAFLUSH, &termios);

Completed in 125 milliseconds

1234