Home
last modified time | relevance | path

Searched refs:stdin (Results 1 – 25 of 87) sorted by relevance

1234

/haiku/src/libs/bsd/
H A Dgetpass.c26 if (tcgetattr(fileno(stdin), &termios) == 0) { in getpass()
30 changed = tcsetattr(fileno(stdin), TCSAFLUSH, &noEchoTermios) == 0; in getpass()
38 if (fgets(password, sizeof(password), stdin) != NULL) { in getpass()
52 tcsetattr(fileno(stdin), TCSAFLUSH, &termios); in getpass()
/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)
/haiku/src/system/libroot/posix/glibc/libio/
H A Dstdio.c31 #undef stdin
34 _IO_FILE *stdin = (FILE *) &_IO_2_1_stdin_; variable
51 AL(stdin);
H A Dwscanf.c33 done = _IO_vfwscanf (stdin, format, arg, NULL); in wscanf()
/haiku/src/libs/libtelnet/
H A Dread_password.c108 while (!fgets(s, max, stdin));
115 if (!fgets(key_string, sizeof(key_string), stdin)) {
116 clearerr(stdin);
/haiku/src/system/libroot/posix/glibc/stdio-common/
H A Dscanf.c37 done = INTUSE(_IO_vfscanf) (stdin, format, arg, NULL); in scanf()
39 done = vfscanf (stdin, format, arg); in scanf()
/haiku/src/tests/system/libroot/posix/
H A Dtst-getwc.c32 while (!feof(stdin) && n < sizeof(buf) - 1) { in main()
33 buf[n] = getwc(stdin); in main()
H A Dtruncate.cpp43 if (fgets(yes, sizeof(yes), stdin) == NULL || tolower(yes[0]) != 'y') in main()
/haiku/src/bin/multiuser/
H A Dlogin.cpp38 while ((c = fgetc(stdin)) != EOF && c != '\r' && c != '\n') { in read_string()
46 if (ferror(stdin) != 0) in read_string()
47 return ferror(stdin); in read_string()
/haiku/src/tests/system/network/
H A Dudp_client.c26 while (!feof(stdin)) { in udp_client()
27 status = fread(sendbuf, 1, MAXLEN, stdin); in udp_client()
H A Dtcp_client.c77 if (fgets(buffer, sizeof(buffer) - 1, stdin) == NULL) { in main()
/haiku/src/system/boot/platform/u-boot/
H A Dconsole.cpp48 FILE* stdin; variable
169 stdin = (FILE *)&sSerial; in console_init()
/haiku/src/tools/misc/
H A Dbin2h.c12 FILE *infp = stdin; in main()
H A Dbin2asm.c12 FILE *infp = stdin; in main()
/haiku/src/tests/add-ons/kernel/network/
H A Dnet_stack_tester.cpp35 fgets(buffer,sizeof(buffer), stdin); in main()
/haiku/src/system/libroot/posix/glibc/include/bits/
H A Dstdio.h43 return _IO_getc (stdin); in getchar()
59 return _IO_getc_unlocked (stdin); in getchar_unlocked()
/haiku/src/bin/keymap/
H A Dmain.cpp65 status = keymap.LoadSource(stdin); in load_keymap()
70 BFileIO fileIO(stdin); in load_keymap()
/haiku/src/tests/system/kernel/
H A Dlock_node_test.cpp30 fgets(a, 5, stdin); in main()
/haiku/src/system/boot/platform/bios_ia32/
H A Dconsole.cpp42 FILE *stdin, *stdout, *stderr; variable
201 stdin = (FILE *)&sConsole; in console_init()
/haiku/src/system/boot/platform/next_m68k/
H A Dconsole.cpp43 FILE *stdin, *stdout, *stderr; variable
205 stdin = (FILE *)&sConsole; in console_init()
/haiku/src/system/boot/platform/atari_m68k/
H A Dconsole.cpp45 FILE *stdin, *stdout, *stderr; variable
217 stdin = (FILE *)&sConsole; in console_init()
/haiku/src/bin/network/telnet/
H A Dauthenc.c98 res = fgets(result, length, stdin); in telnet_gets()
/haiku/src/bin/pkgman/
H A DDecisionProvider.cpp41 if (fgets(buffer, 32, stdin)) { in YesNoDecisionNeeded()
/haiku/src/system/libroot/stubbed/
H A Dgenerate_stubs.py12 for line in sys.stdin.readlines():
/haiku/src/system/boot/platform/efi/
H A Dconsole.cpp58 FILE *stdin, *stdout, *stderr; variable
235 stdin = (FILE *)gConsoleNode; in console_init()

1234